Skip to content

Commit

Permalink
fix: inverted condition for silent flag
Browse files Browse the repository at this point in the history
  • Loading branch information
TendTo committed Jun 21, 2024
1 parent 2b3bdf0 commit 6fdebcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlinear/parser/Driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void Driver::CheckSat() {
}

void Driver::GetModel() {
if (!context_.config().silent()) return;
if (context_.config().silent()) return;
std::cout << "(model\n" << context_.model() << "\n)" << std::endl;
}

Expand Down

0 comments on commit 6fdebcf

Please sign in to comment.