Skip to content

Commit 9dba5ae

Browse files
committed
Fix format
1 parent b3719e8 commit 9dba5ae

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/goto-checker/solver_factory.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,11 @@ std::unique_ptr<solver_factoryt::solvert> solver_factoryt::get_sat_solver()
214214
auto solver = util_make_unique<solvert>();
215215
if(options.get_bool_option("cadical"))
216216
{
217-
solver->set_prop(make_satcheck_prop<satcheck_cadicalt>(message_handler, options));
217+
solver->set_prop(
218+
make_satcheck_prop<satcheck_cadicalt>(message_handler, options));
218219
}
219-
else {
220+
else
221+
{
220222
// default solver
221223
if(
222224
options.get_bool_option("beautify") ||

0 commit comments

Comments
 (0)