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