1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-03-26 05:17:03 +00:00

fixup to tests improved

This commit is contained in:
Zeno Rogue 2021-08-19 01:40:15 +02:00
parent 80d5ee7c37
commit 1b1d38bda6

@ -102,12 +102,12 @@ void iterate(int qty) {
catch(rulegen_retry& f) {
println(hlog, "retry on: ", f.what());
}
catch(rulegen_failure& f) {
println(hlog, "failure: ", f.what());
}
catch(rulegen_surrender& f) {
println(hlog, "surrender: ", f.what());
}
catch(rulegen_failure& f) {
println(hlog, "failure: ", f.what());
}
}
println(hlog, "try_count = ", try_count, " states = ", isize(treestates), " imp = ", isize(important), " analyzers = ", total_analyzers(), " cell = ", tcellcount);
auto *c = first_tcell;