summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-12-06 12:03:40 -0600
committerGitHub <noreply@github.com>2019-12-06 12:03:40 -0600
commit30e5875e066e917b69d01189233aec26ce226cd6 (patch)
tree9ff9dd4a609a0989f416880c10183e228276c048 /src/smt
parentc7c2d593674e3776ab0c720be1c0c759db8f9453 (diff)
New algorithm for interpolation and abduction based on unsat cores (#3255)
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 075c8fa00..7e18e5a6f 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1303,6 +1303,12 @@ void SmtEngine::setDefaults() {
}
}
+ // sygus core connective requires unsat cores
+ if (options::sygusCoreConnective())
+ {
+ options::unsatCores.set(true);
+ }
+
if ((options::checkModels() || options::checkSynthSol()
|| options::produceAbducts()
|| options::modelCoresMode() != MODEL_CORES_NONE
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback