Skip to content

Commit

Permalink
Fixing spelling issues by @SnarkBoojum
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Jul 14, 2020
1 parent eb506e5 commit 26109ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cms_breakid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ bool BreakID::doit()
if (solver->check_assumptions_contradict_foced_assignment()) {
if (solver->conf.verbosity) {
cout
<< "c [breakid] forced assignements contradicted by assumptions, cannot run"
<< "c [breakid] forced assignments contradicted by assumptions, cannot run"
<< endl;
}
return false;
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ void Main::printResultFunc(
}
if (ret == l_True && !printResult && !toFile)
{
cout << "c Not printing satisfying assignement. "
cout << "c Not printing satisfying assignment. "
"Use the '--printsol 1' option for that" << endl;
}

Expand Down
2 changes: 1 addition & 1 deletion src/searcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2203,7 +2203,7 @@ void Searcher::rebuildOrderHeapVMTF()
if (varData[v].removed != Removed::none
//NOTE: the level==0 check is needed because SLS calls this
//when there is a solution already, but we should only skip
//level 0 assignements
//level 0 assignments
|| (value(v) != l_Undef && varData[v].level == 0)
) {
//
Expand Down

0 comments on commit 26109ef

Please sign in to comment.