Fix overlap order comment in Puberty Simulator
This commit is contained in:
parent
74eb6fe2e5
commit
41bdcc3988
|
@ -34,7 +34,7 @@ const MIN_OVERLAP_ORDER: usize = 2;
|
||||||
const MIN_OVERLAP_TIMES: usize = 1 << MIN_OVERLAP_ORDER; // 4
|
const MIN_OVERLAP_TIMES: usize = 1 << MIN_OVERLAP_ORDER; // 4
|
||||||
const DEFAULT_OVERLAP_ORDER: usize = 3;
|
const DEFAULT_OVERLAP_ORDER: usize = 3;
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
const DEFAULT_OVERLAP_TIMES: usize = 1 << DEFAULT_OVERLAP_ORDER; // 4
|
const DEFAULT_OVERLAP_TIMES: usize = 1 << DEFAULT_OVERLAP_ORDER; // 8
|
||||||
const MAX_OVERLAP_ORDER: usize = 5;
|
const MAX_OVERLAP_ORDER: usize = 5;
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
const MAX_OVERLAP_TIMES: usize = 1 << MAX_OVERLAP_ORDER; // 32
|
const MAX_OVERLAP_TIMES: usize = 1 << MAX_OVERLAP_ORDER; // 32
|
||||||
|
|
Loading…
Reference in a new issue