Skip to content

Commit 236c4df

Browse files
committed
Less printing
Less printing
1 parent 322a466 commit 236c4df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/oracle/oracle.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ bool Oracle::SatByCache(const vector<Lit>& assumps) {
179179
}
180180
stats.sat_by_cache_calls++;
181181
stats.mems += checks/20;
182-
if (stats.sat_by_cache_calls % 100 == 99) {
183-
cout << "found: " << found << " cache var: " << cache_lookup_var
182+
if (stats.sat_by_cache_calls % 100 == 99 && verb >= 3) {
183+
cout << "c o [oracle]-cache found: " << found << " cache var: " << cache_lookup_var
184184
<< "orig sz: " << sol_cache.size()/mult
185185
<< " cache size: " << cache_lookup[0].size() << " -- " << cache_lookup[1].size()
186186
<< endl;

0 commit comments

Comments
 (0)