- Code cleanup for intruder count.
This commit is contained in:
parent
af07f0cc3f
commit
74052cf226
@ -162,16 +162,20 @@ prune_bounds (const System sys)
|
||||
actioncount = countIntruderActions ();
|
||||
|
||||
// Limit intruder actions in any case
|
||||
if (!(switches.intruder) && actioncount > 0)
|
||||
if (!switches.intruder)
|
||||
{
|
||||
if (actioncount > 0)
|
||||
{
|
||||
if (switches.output == PROOF)
|
||||
{
|
||||
indentPrint ();
|
||||
eprintf
|
||||
("Pruned: no intruder allowed.\n", switches.maxIntruderActions);
|
||||
("Pruned: no intruder allowed.\n",
|
||||
switches.maxIntruderActions);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Limit on intruder events count
|
||||
if (actioncount > switches.maxIntruderActions)
|
||||
|
Loading…
Reference in New Issue
Block a user