summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-11-27 15:59:36 -0600
committerGitHub <noreply@github.com>2019-11-27 15:59:36 -0600
commit5e2d39ccd22f38c6a3f2aab24136b07b65b3f81e (patch)
tree5c92ecb7418a2bc2c0645782b793f747c2bb5664 /src/preprocessing/passes
parent46eeb6a507c31b4ac65b0ef70c32898667097377 (diff)
Fix sygus inference for choice functions introduced at preprocess (#3500)
Diffstat (limited to 'src/preprocessing/passes')
-rw-r--r--src/preprocessing/passes/sygus_inference.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preprocessing/passes/sygus_inference.cpp b/src/preprocessing/passes/sygus_inference.cpp
index 930edf869..6708f3c3a 100644
--- a/src/preprocessing/passes/sygus_inference.cpp
+++ b/src/preprocessing/passes/sygus_inference.cpp
@@ -202,7 +202,7 @@ bool SygusInference::solveSygus(std::vector<Node>& assertions,
== free_functions.end());
free_functions.push_back(cur);
}
- else if (cur.getKind() == FORALL)
+ else if (cur.isClosure())
{
Trace("sygus-infer")
<< "...fail: non-top-level quantifier." << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback