Add irrelevant kinds infrastructure to TheoryModel (#4945)
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>
Thu, 27 Aug 2020 04:17:57 +0000 (23:17 -0500)
committerGitHub <noreply@github.com>
Thu, 27 Aug 2020 04:17:57 +0000 (23:17 -0500)
commit63905da0f55f99dfc1f4ab40a1ce61d3e7d58ce1
tree75138b0c38fb43c2b86ffbcf034f2e192b15d1ab
parent34953e8f4d9928cd8a92177f104b87e56479b437
Add irrelevant kinds infrastructure to TheoryModel (#4945)

Currently, Theory is responsible for implementing a computeRelevantTerms method collects the union of:
(1) The terms appearing in its assertions and its shared terms,
(2) The set of additional terms the theory believes are relevant.

Currently, (1) is computed by an internal Theory method computeRelevantTermsInternal, and the overall computeRelevantTerms is overridden by the theory (for datatypes and arrays only) for also including (2).

The new plan is that Theory will only need to compute (2). Computing (1) will be the job of ModelManager::collectAssertedTerms and the model manager will call Theory::computeRelevantTerms as an additional step prior to its calls to collect model info.

This will make certain optimizations possible in theory combination (e.g. tracking asserted terms incrementally).

This PR adds the ModelManager::collectAssertedTerms method and also adds infrastructure for irrelevant kinds in the model object (which have an analogous interface as when "unevaluated" kinds are marked during initialization). It does not connect the implementation yet.

FYI @barrettcw
src/theory/datatypes/theory_datatypes.cpp
src/theory/model_manager.cpp
src/theory/model_manager.h
src/theory/theory_model.cpp
src/theory/theory_model.h
src/theory/valuation.cpp
src/theory/valuation.h