Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeters committed Dec 9, 2014
1 parent 3bb096f commit 5361724
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/api/combination.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ int main() {
<< "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);
Expand Down
2 changes: 1 addition & 1 deletion examples/api/java/Combination.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static void main(String[] args) {
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);
}
Expand Down

0 comments on commit 5361724

Please sign in to comment.