mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 13:06:05 +00:00
Change score calculation from conflicts to decisions
This commit is contained in:
parent
bcab836ce9
commit
d847af311f
1 changed files with 2 additions and 2 deletions
|
@ -240,8 +240,8 @@ for benchmark in benchmarks:
|
||||||
s.set("smt.max_conflicts", max_conflicts)
|
s.set("smt.max_conflicts", max_conflicts)
|
||||||
r = s.check()
|
r = s.check()
|
||||||
st = s.statistics()
|
st = s.statistics()
|
||||||
conf = st.num_conflicts()
|
d = st.num_decisions()
|
||||||
scores[(n, v)] = conf
|
scores[(n, v)] = d
|
||||||
|
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue