- Some reindentation. Nothing interesting, just syntax.

This commit is contained in:
ccremers 2006-01-02 16:07:56 +00:00
parent e21627442a
commit 4023ef237e
5 changed files with 17 additions and 14 deletions

View File

@ -12,7 +12,8 @@
// Private methods // Private methods
//************************************************************************ //************************************************************************
int selfInitiator(const System sys, const int run) int
selfInitiator (const System sys, const int run)
{ {
int self_initiator; int self_initiator;
@ -47,7 +48,8 @@ int selfInitiator(const System sys, const int run)
} }
//! Count the number of any self-initiators //! Count the number of any self-initiators
int selfInitiators(const System sys) int
selfInitiators (const System sys)
{ {
int count; int count;
int run; int run;
@ -77,14 +79,15 @@ int selfInitiators(const System sys)
* *
* A lower value (closer to 0) is a more feasible attack. * A lower value (closer to 0) is a more feasible attack.
*/ */
int attackCost(const System sys) int
attackCost (const System sys)
{ {
int cost; int cost;
cost = 0; cost = 0;
cost += get_semitrace_length(); cost += get_semitrace_length ();
cost += 5 * selfInitiators(sys); cost += 5 * selfInitiators (sys);
return cost; return cost;
} }

View File

@ -1,6 +1,6 @@
#ifndef COST #ifndef COST
#define COST #define COST
int attackCost(const System sys); int attackCost (const System sys);
#endif #endif

View File

@ -349,7 +349,8 @@ dotSemiState (const System sys)
// Third, the intruder node (if needed) // Third, the intruder node (if needed)
if (from_intruder_count > 0) if (from_intruder_count > 0)
{ {
eprintf ("\tintruder [label=\"Initial intruder knowledge\", color=red];\n"); eprintf
("\tintruder [label=\"Initial intruder knowledge\", color=red];\n");
} }
// Fourth, all ranking info // Fourth, all ranking info
@ -413,4 +414,3 @@ dotSemiState (const System sys)
// close graph // close graph
eprintf ("};\n\n"); eprintf ("};\n\n");
} }

View File

@ -609,7 +609,7 @@ graphNode (const System sys)
// Print step // Print step
printf ("%i:", sys->runs[run].step - 1); printf ("%i:", sys->runs[run].step - 1);
if (rd->type == CLAIM && (!isRunTrusted(sys,run))) if (rd->type == CLAIM && (!isRunTrusted (sys, run)))
{ {
printf ("Skip claim in #%i\"", run); printf ("Skip claim in #%i\"", run);
} }