1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-20 18:59:36 +00:00

comments about imputed and direct

This commit is contained in:
Zeno Rogue 2020-03-01 14:37:48 +01:00
parent b0eb4e816b
commit 44c79a468c

View File

@ -971,12 +971,17 @@ EX namespace clearing {
steps--; ds++;
}
}
/** cells with the same celltype are likely to have the same number of descendant leaves */
typedef tuple<int, int, int, int> celltype;
/** stats about the number of descendant leaves for each celltype */
map<celltype, pair<bignum, int> > stats;
/** the total number of leaves killed, approximated from the actual numbers and Clearing structure */
EX bignum imputed;
/** the total number of leaves killed directly */
EX int direct;
map<cell*, pair<bignum, int> > score;