// Check that SAT results generate a model correctly.
if(options::checkModels()) {
- // TODO (#1693) check model when unknown result?
if (r.asSatisfiabilityResult().isSat() == Result::SAT)
{
checkModel();
* If the sets-ext option is not set and we have an extended operator,
* we throw an exception. This function is a no-op otherwise.
*
- * This is related to github issue #1076
* TheorySets uses expandDefinition as an entry point to see if the input
* contains extended operators.
*
* possible, for example in handling under-specified operations
* using partially defined functions.
*
- * TODO (github issue #1076):
- * some theories like sets use expandDefinition as a "context
+ * Some theories like sets use expandDefinition as a "context
* independent preRegisterTerm". This is required for cases where
* a theory wants to be notified about a term before preprocessing
* and simplification but doesn't necessarily want to rewrite it.
void TheoryEngineModelBuilder::postProcessModel(bool incomplete, Model* m)
{
// if we are incomplete, there is no guarantee on the model.
- // thus, we do not check the model here. (related to #1693).
+ // thus, we do not check the model here.
if (incomplete)
{
return;