We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d473f commit d4b984fCopy full SHA for d4b984f
src/goto-checker/solver_factory.cpp
@@ -131,8 +131,12 @@ std::unique_ptr<solver_factoryt::solvert> solver_factoryt::get_solver()
131
{
132
if(options.get_bool_option("dimacs"))
133
return get_dimacs();
134
- if(options.get_bool_option("refine"))
+ if(
135
+ options.get_bool_option("refine") &&
136
+ !options.get_bool_option("refine-strings"))
137
+ {
138
return get_bv_refinement();
139
+ }
140
else if(options.get_bool_option("refine-strings"))
141
return get_string_refinement();
142
if(options.get_bool_option("smt2"))
0 commit comments