Change default adjusted decay rate

This commit is contained in:
Kiana Sheibani 2023-11-28 15:30:01 -05:00
parent 14b5b2cafd
commit d7b5394be3
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -316,7 +316,7 @@ Set limit (default 0): "
// Defaults // Defaults
let mut decay_rate = 0.8; let mut decay_rate = 0.8;
let mut adj_decay_rate = 0.5; let mut adj_decay_rate = 0.6;
let mut period_days = 40.0; let mut period_days = 40.0;
let mut tau = 0.4; let mut tau = 0.4;
@ -355,7 +355,7 @@ If the number of sets played between two players is less than the set limit,
then this value is used instead of the regular network decay rate. then this value is used instead of the regular network decay rate.
This value should be \x1b[1mlower\x1b[0m than the network decay rate. This value should be \x1b[1mlower\x1b[0m than the network decay rate.
Adjusted network decay rate (default 0.5): " Adjusted network decay rate (default 0.6): "
); );
let adj_decay_rate_input = read_string(); let adj_decay_rate_input = read_string();
if !adj_decay_rate_input.is_empty() { if !adj_decay_rate_input.is_empty() {