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