Skip to content

Commit

Permalink
[Janitor mode] Fix whitespace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@21205 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Jun 19, 2014
1 parent 8914fde commit 90d2f88
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Compiler/FrontEnd/InstSection.mo
Expand Up @@ -583,7 +583,7 @@ algorithm

// Instantiate all branches.
(cache, env, ih, ci_state, daeLLst) = instInitialIfEqBranches(cache, env, ih, pre, ci_state, tb, impl, {});
(cache, env, ih, ci_state, daeElts2) = instInitialIfEqBranch(cache, env, ih, pre, ci_state, fb, impl);
(cache, env, ih, ci_state, daeElts2) = instInitialIfEqBranch(cache, env, ih, pre, ci_state, fb, impl);
dae = DAE.DAE({DAE.INITIAL_IF_EQUATION(expl1,daeLLst,daeElts2,source)});
then
(cache,env,ih,dae,csets,ci_state,graph);
Expand Down Expand Up @@ -2929,15 +2929,15 @@ algorithm
list<list<SCode.EEquation>> rest_seq;
list<DAE.Element> deq;
list<list<DAE.Element>> branches;

case (cache, env, ih, _, state, seq :: rest_seq, _, _)
equation
(cache, env, ih, state, deq) =
instIfEqBranch(cache, env, ih, inPrefix, state, seq, inImpl);
(cache, env, ih, state, branches) =
instIfEqBranches(cache, env, ih, inPrefix, state, rest_seq, inImpl, deq :: inAccumEqs);
then
(cache, env, ih, state, branches);
(cache, env, ih, state, branches);

case (_, _, _, _, _, {}, _, _)
then (inCache, inEnv, inIH, inState, listReverse(inAccumEqs));
Expand Down Expand Up @@ -2991,15 +2991,15 @@ algorithm
list<list<SCode.EEquation>> rest_seq;
list<DAE.Element> deq;
list<list<DAE.Element>> branches;

case (cache, env, ih, _, state, seq :: rest_seq, _, _)
equation
(cache, env, ih, state, deq) =
instInitialIfEqBranch(cache, env, ih, inPrefix, state, seq, inImpl);
(cache, env, ih, state, branches) =
instInitialIfEqBranches(cache, env, ih, inPrefix, state, rest_seq, inImpl, deq :: inAccumEqs);
then
(cache, env, ih, state, branches);
(cache, env, ih, state, branches);

case (_, _, _, _, _, {}, _, _)
then (inCache, inEnv, inIH, inState, listReverse(inAccumEqs));
Expand Down

0 comments on commit 90d2f88

Please sign in to comment.