Home
last modified time | relevance | path

Searched refs:ModelEngine (Results 1 – 4 of 4) sorted by relevance

/dports/math/cvc4/CVC4-1.7/src/theory/quantifiers/fmf/
H A Dmodel_engine.cpp38 ModelEngine::ModelEngine( context::Context* c, QuantifiersEngine* qe ) : in ModelEngine() function in ModelEngine
48 ModelEngine::~ModelEngine() { in ~ModelEngine()
52 bool ModelEngine::needsCheck( Theory::Effort e ) { in needsCheck()
65 void ModelEngine::reset_round( Theory::Effort e ) { in reset_round()
124 bool ModelEngine::checkComplete() { in checkComplete()
128 bool ModelEngine::checkCompleteFor( Node q ) { in checkCompleteFor()
132 void ModelEngine::registerQuantifier( Node f ){ in registerQuantifier()
156 void ModelEngine::assertNode( Node f ){ in assertNode()
160 bool ModelEngine::optOneQuantPerRound(){ in optOneQuantPerRound()
165 int ModelEngine::checkModel(){ in checkModel()
[all …]
H A Dmodel_engine.h28 class ModelEngine : public QuantifiersModule
49 ModelEngine( context::Context* c, QuantifiersEngine* qe );
50 virtual ~ModelEngine();
/dports/math/cvc4/CVC4-1.7/src/theory/
H A Dquantifiers_engine.h65 class ModelEngine; variable
368 std::unique_ptr<quantifiers::ModelEngine> d_model_engine;
H A Dquantifiers_engine.cpp204 d_model_engine.reset(new quantifiers::ModelEngine(c, this)); in QuantifiersEngine()