We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 322a466 commit 236c4dfCopy full SHA for 236c4df
src/oracle/oracle.cpp
@@ -179,8 +179,8 @@ bool Oracle::SatByCache(const vector<Lit>& assumps) {
179
}
180
stats.sat_by_cache_calls++;
181
stats.mems += checks/20;
182
- if (stats.sat_by_cache_calls % 100 == 99) {
183
- cout << "found: " << found << " cache var: " << cache_lookup_var
+ if (stats.sat_by_cache_calls % 100 == 99 && verb >= 3) {
+ cout << "c o [oracle]-cache found: " << found << " cache var: " << cache_lookup_var
184
<< "orig sz: " << sol_cache.size()/mult
185
<< " cache size: " << cache_lookup[0].size() << " -- " << cache_lookup[1].size()
186
<< endl;
0 commit comments