Move quantifiers engine private to own file (#5053)
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>
Tue, 15 Sep 2020 03:13:38 +0000 (22:13 -0500)
committerGitHub <noreply@github.com>
Tue, 15 Sep 2020 03:13:38 +0000 (22:13 -0500)
commit2b5902b1c54b1a4717273d501333dd37b8715f9d
tree13de163d456f1a5dfcf3e74c5f91e90d092addee
parent4a1b5ea5568fb6c688f407946f9a7fbb1cec3c31
Move quantifiers engine private to own file (#5053)

This moves and renames the quantifiers engine private class to QuantifiersModules. This is in preparation for using a standard state and inference manager object in TheoryQuantifiers and QuantifiersEngine.

Initializing quantifiers engine is a bit non-standard since it is intentionally a separate entity from TheoryQuantifiers. However, the plan is for quantifiers engine to use the state and inference manager of TheoryQuantifiers.

This PR additionally moves the initialization of quantifiers modules to a QuantifiersEngine::finishInit() method. The motivation for is that we do not have a state and inference manager during construction of QuantifiersEngine, since these will live in TheoryQuantifiers and will be passed to QuantifiersEngine during TheoryQuantifiers::finishInit. This means that we need a final pass to initialize quantifiers engine after these are initialized, which thus must come as the last step of TheoryEngine::finishInit.

The next PR will connect the state and inference manager to QuantifiersEngine during TheoryQuantifiers::finishInit. Then, the plan is for many of the core utilities in QuantifiersEngine to migrate to state/inference manager, and finally for its modules to reference state and inference manager instead of QuantifiersEngine.
src/CMakeLists.txt
src/theory/quantifiers/quantifiers_modules.cpp [new file with mode: 0644]
src/theory/quantifiers/quantifiers_modules.h [new file with mode: 0644]
src/theory/quantifiers_engine.cpp
src/theory/quantifiers_engine.h
src/theory/theory_engine.cpp