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 6f24efd commit 2227a3cCopy full SHA for 2227a3c
src/goto-symex/solver_hardness.cpp
@@ -77,11 +77,12 @@ void solver_hardnesst::register_assertion_ssas(
77
const std::vector<goto_programt::const_targett> &pcs)
78
{
79
if(assertion_stats.empty())
80
- return;
+ {
81
+ assertion_stats.ssa_expression = expr2string(ssa_expression);
82
+ assertion_stats.pcs = pcs;
83
+ }
84
- assertion_stats.sat_hardness = current_hardness;
- assertion_stats.ssa_expression = expr2string(ssa_expression);
- assertion_stats.pcs = pcs;
85
+ assertion_stats.sat_hardness += current_hardness;
86
current_ssa_key = {};
87
current_hardness = {};
88
}
0 commit comments