File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -656,7 +656,7 @@ class MaxCyclesMetric final : public IterativeDeepeningSearcher::Metric {
656
656
return state.isCycled (maxCycles);
657
657
}
658
658
void increaseLimit () final {
659
- maxCycles *= 2ULL ;
659
+ maxCycles *= 4ULL ;
660
660
klee_message (" increased max-cycles to %llu" , maxCycles);
661
661
}
662
662
};
Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ class BlockLevelSearcher final : public Searcher {
405
405
using kblocks_ty = std::set<KBlock *, KBlockCompare>;
406
406
407
407
using ThirdLayer =
408
- std::map<unsigned long long , states_ty, std::less <unsigned long long >>;
408
+ std::map<unsigned long long , states_ty, std::greater <unsigned long long >>;
409
409
using SecondLayer =
410
410
std::map<std::vector<unsigned >, ThirdLayer, VectorsCompare>;
411
411
using FirstLayer = std::map<unsigned , SecondLayer, std::greater<unsigned >>;
You can’t perform that action at this time.
0 commit comments