Reindent code for consistency.
This commit is contained in:
parent
369ae1e3f8
commit
0d9c23c33b
10
src/dotout.c
10
src/dotout.c
@ -726,7 +726,9 @@ isApplicationM0 (const System sys, const int run)
|
||||
* Name & documentation might be off; TODO later.
|
||||
* This is for now just a refactoring to get rid of trampolines.
|
||||
*/
|
||||
int preceventPossible (const System sys, const int rank, const int run, const int rank2, const int run2, const int ev2)
|
||||
int
|
||||
preceventPossible (const System sys, const int rank, const int run,
|
||||
const int rank2, const int run2, const int ev2)
|
||||
{
|
||||
// regular preceding event
|
||||
|
||||
@ -738,8 +740,7 @@ int preceventPossible (const System sys, const int rank, const int run, const in
|
||||
if (rank2 == rank)
|
||||
{
|
||||
// equal rank: only if different run
|
||||
if ((sys->runs[run].protocol != INTRUDER)
|
||||
&& (run2 == run))
|
||||
if ((sys->runs[run].protocol != INTRUDER) && (run2 == run))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@ -753,7 +754,8 @@ int preceventPossible (const System sys, const int rank, const int run, const in
|
||||
* This is for now just a refactoring to get rid of trampolines.
|
||||
*/
|
||||
int
|
||||
iteratePrecedingRole(const System sys, const int *ranks, const int run, const int ev, const int rank)
|
||||
iteratePrecedingRole (const System sys, const int *ranks, const int run,
|
||||
const int ev, const int rank)
|
||||
{
|
||||
int run2;
|
||||
|
||||
|
@ -1703,7 +1703,8 @@ process_switches (int commandline)
|
||||
{
|
||||
printf ("Try '%s --help' for more information, or visit:\n",
|
||||
progname);
|
||||
printf (" http://www.cs.ox.ac.uk/people/cas.cremers/scyther/index.html\n");
|
||||
printf
|
||||
(" http://www.cs.ox.ac.uk/people/cas.cremers/scyther/index.html\n");
|
||||
exit (0);
|
||||
}
|
||||
else
|
||||
|
@ -539,13 +539,15 @@ isEventInteresting (const System sys, const Roledef rd)
|
||||
}
|
||||
|
||||
//! Refactoring code from below
|
||||
void xmlRunIndex (char *desc, const int run, const int index)
|
||||
void
|
||||
xmlRunIndex (char *desc, const int run, const int index)
|
||||
{
|
||||
xmlPrint ("<%s run=\"%i\" index=\"%i\" />", desc, run, index);
|
||||
}
|
||||
|
||||
//! Refactoring code from below
|
||||
void xmlShowThisBinding(const Binding b)
|
||||
void
|
||||
xmlShowThisBinding (const Binding b)
|
||||
{
|
||||
if (isTermVariable (b->term) && !b->done)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user