TheoryArith::TheoryArith(context::Context* c, context::UserContext* u, OutputChannel& out, Valuation valuation, const LogicInfo& logicInfo, QuantifiersEngine* qe) :
Theory(THEORY_ARITH, c, u, out, valuation, logicInfo, qe),
- d_nlIncomplete(u, false),
+ d_nlIncomplete( false),
d_qflraStatus(Result::SAT_UNKNOWN),
d_unknownsInARow(0),
d_hasDoneWorkSinceCut(false),
}
}
}//if !emmittedConflictOrSplit && fullEffort(effortLevel) && !hasIntegerModel()
+ if(fullEffort(effortLevel) && d_nlIncomplete){
+ // TODO this is total paranoia
+ d_out->setIncomplete();
+ }
if(Debug.isOn("paranoid:check_tableau")){ d_linEq.debugCheckTableau(); }
if(Debug.isOn("arith::print_model")) { debugPrintModel(); }
class TheoryArith : public Theory {
friend class InstantiatorTheoryArith;
private:
- context::CDO<bool> d_nlIncomplete;
+ bool d_nlIncomplete;
+ // TODO A better would be:
+ //context::CDO<bool> d_nlIncomplete;
enum Result::Sat d_qflraStatus;
// check()