- Added --no-intruder switch, but it is currently broken.

This commit is contained in:
ccremers
2005-12-21 19:02:41 +00:00
parent 00e49601eb
commit e82ce8b962
3 changed files with 20 additions and 2 deletions

View File

@@ -3203,10 +3203,10 @@ prune_bounds ()
return 1;
// Limit on intruder events count
if (switches.maxIntruderActions < INT_MAX)
if (switches.maxIntruderActions < INT_MAX || !(switches.intruder))
{
// Only check if actually used
if (countIntruderActions () > switches.maxIntruderActions)
if (!(switches.intruder) || countIntruderActions () > switches.maxIntruderActions)
{
if (switches.output == PROOF)
{