if (opts.wasSetByUser(options::nlCad))
{
std::stringstream ss;
- ss << "Cannot use " << options::nlCad.name << " without configuring with --poly.";
+ ss << "Cannot use " << options::arith::nlCad__name << " without configuring with --poly.";
throw OptionException(ss.str());
}
else
{
- Notice() << "Cannot use --" << options::nlCad.name
+ Notice() << "Cannot use --" << options::arith::nlCad__name
<< " without configuring with --poly." << std::endl;
opts.arith.nlCad = false;
opts.arith.nlExt = options::NlExtMode::FULL;
#include "theory/ext_theory.h"
#include "theory/rewriter.h"
#include "theory/theory_model.h"
+#include "util/rational.h"
using namespace cvc5::kind;