<< "the assumptions are satisfiable: "
<< smt.checkSat(em.mkConst(true)) << "."<< endl;
- cout << "Finally, after a SAT call, we recursively call smt.getValue(...) on"
+ cout << "Finally, after a SAT call, we recursively call smt.getValue(...) on "
<< "all of the assumptions to see what the satisfying model looks like."
<< endl;
prefixPrintGetValue(smt, assumptions);
System.out.println("the assumptions are satisfiable: " +
smt.checkSat(em.mkConst(true)) + ".");
- System.out.println("Finally, after a SAT call, we recursively call smt.getValue(...) on" +
+ System.out.println("Finally, after a SAT call, we recursively call smt.getValue(...) on " +
"all of the assumptions to see what the satisfying model looks like.");
prefixPrintGetValue(smt, assumptions, 0);
}