mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-10 15:59:53 +00:00
comments about imputed and direct
This commit is contained in:
parent
b0eb4e816b
commit
44c79a468c
@ -972,11 +972,16 @@ EX namespace clearing {
|
||||
}
|
||||
}
|
||||
|
||||
/** 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;
|
||||
|
Loading…
Reference in New Issue
Block a user