3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 04:56:03 +00:00

Change score calculation from conflicts to decisions

This commit is contained in:
Nikolaj Bjorner 2025-08-21 16:50:12 -07:00 committed by GitHub
parent bcab836ce9
commit d847af311f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -240,8 +240,8 @@ for benchmark in benchmarks:
s.set("smt.max_conflicts", max_conflicts)
r = s.check()
st = s.statistics()
conf = st.num_conflicts()
scores[(n, v)] = conf
d = st.num_decisions()
scores[(n, v)] = d
</pre>