fix examples

This commit is contained in:
Laurent Perron
2024-12-29 19:21:42 +01:00
parent 6be2ba21e9
commit a52d00b42b
12 changed files with 71 additions and 84 deletions

View File

@@ -43,7 +43,8 @@ void RunConstraintProgrammingExample() {
solver.NewSearch(db);
while (solver.NextSolution()) {
LOG(INFO) << "Solution" << ": x = " << x->Value() << "; y = " << y->Value()
LOG(INFO) << "Solution"
<< ": x = " << x->Value() << "; y = " << y->Value()
<< "; z = " << z->Value();
}
solver.EndSearch();