summaryrefslogtreecommitdiff
path: root/Source/Core/AbsyQuant.cs
diff options
context:
space:
mode:
authorGravatar Rustan Leino <unknown>2013-12-16 16:23:30 -0800
committerGravatar Rustan Leino <unknown>2013-12-16 16:23:30 -0800
commitfc5563f05710d57f9f981189b7f67554fbf95771 (patch)
treea96f6e0eaee4cbcfbe7be8427c0a1fd5a646a1c6 /Source/Core/AbsyQuant.cs
parent42b80a61e83e8d569700340ee9ad8f8aa3a270a8 (diff)
Fixed bug in never_pattern functionality. In the new design, never_pattern does not assemble any nopats from nested quantifiers/lambdas.
Diffstat (limited to 'Source/Core/AbsyQuant.cs')
-rw-r--r--Source/Core/AbsyQuant.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/AbsyQuant.cs b/Source/Core/AbsyQuant.cs
index 067edc00..b29f60fe 100644
--- a/Source/Core/AbsyQuant.cs
+++ b/Source/Core/AbsyQuant.cs
@@ -588,6 +588,10 @@ namespace Microsoft.Boogie {
}
return base.VisitNAryExpr(node);
}
+ public override BinderExpr VisitBinderExpr(BinderExpr node) {
+ // don't go into binder expression, since the terms in there may have more bound variables
+ return node;
+ }
}
private bool neverTriggerApplied;