summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-09-18 10:26:36 -0500
committerGitHub <noreply@github.com>2018-09-18 10:26:36 -0500
commitfa557c39a89a2c8de198ea0400e6936c1790ad4e (patch)
treef1b2ff7512b3aec3a06d5a879dc930e559ae172e /src/smt
parentd718da758b27c2824d2aff44faf71971133217ab (diff)
Move and rename sygus solver classes (#2488)
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index b4bc0b8dc..15f8280b5 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -127,7 +127,7 @@
#include "theory/quantifiers/fun_def_process.h"
#include "theory/quantifiers/quantifiers_rewriter.h"
#include "theory/quantifiers/single_inv_partition.h"
-#include "theory/quantifiers/sygus/ce_guided_instantiation.h"
+#include "theory/quantifiers/sygus/synth_engine.h"
#include "theory/quantifiers/term_util.h"
#include "theory/rewriter.h"
#include "theory/sort_inference.h"
@@ -3182,7 +3182,9 @@ void SmtEnginePrivate::processAssertions() {
if( options::ceGuidedInst() ){
//register sygus conjecture pre-rewrite (motivated by solution reconstruction)
for (unsigned i = 0; i < d_assertions.size(); ++ i) {
- d_smt.d_theoryEngine->getQuantifiersEngine()->getCegInstantiation()->preregisterAssertion( d_assertions[i] );
+ d_smt.d_theoryEngine->getQuantifiersEngine()
+ ->getSynthEngine()
+ ->preregisterAssertion(d_assertions[i]);
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback