CLEANUP: Reindenting code.

This commit is contained in:
Cas Cremers 2010-11-11 00:08:09 +01:00
parent 619ecf7673
commit fcf694dbd9
2 changed files with 10 additions and 10 deletions

View File

@ -2316,8 +2316,8 @@ arachneClaimTest (Claimlist cl)
* Add specific goal info and iterate algorithm * Add specific goal info and iterate algorithm
*/ */
add_claim_specifics (sys, cl, add_claim_specifics (sys, cl,
roledef_shift (sys->runs[run]. roledef_shift (sys->runs[run].start, cl->ev),
start, cl->ev), realStart); realStart);
} }

View File

@ -1287,8 +1287,8 @@ printRunConstants (const System sys, const int run)
if (sys->runs[run].constants != NULL) if (sys->runs[run].constants != NULL)
{ {
eprintf ("Const "); eprintf ("Const ");
showLocals (run, sys->runs[run].role-> showLocals (run, sys->runs[run].role->declaredconsts,
declaredconsts, sys->runs[run].constants, NULL, "", ", "); sys->runs[run].constants, NULL, "", ", ");
eprintf ("\\l"); eprintf ("\\l");
return true; return true;
} }
@ -1402,9 +1402,9 @@ printRunExplanation (const System sys, const int run,
{ {
ignoreterm = NULL; ignoreterm = NULL;
} }
hadcontent = showLocals (run, sys->runs[run].protocol-> hadcontent =
rolenames, sys->runs[run].rho, showLocals (run, sys->runs[run].protocol->rolenames,
ignoreterm, "", "\\l"); sys->runs[run].rho, ignoreterm, "", "\\l");
} }
} }
} }
@ -1424,9 +1424,9 @@ printRunExplanation (const System sys, const int run,
eprintf (newline); eprintf (newline);
hadcontent = false; hadcontent = false;
} }
if (showLocals (run, sys->runs[run].role-> if (showLocals
declaredvars, sys->runs[run].sigma, NULL, "Var ", (run, sys->runs[run].role->declaredvars, sys->runs[run].sigma, NULL,
"\\l")) "Var ", "\\l"))
{ {
eprintf ("\\l"); eprintf ("\\l");
} }