precise fixme tokryon
cargo devel CI / cargo CI (push) Successful in 1m38s Details

This commit is contained in:
Christoph J. Scherr 2024-02-19 11:06:30 +01:00
parent 1b5b1c9e45
commit df6204d7c4
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ use tokio::time::Instant;
// if we make these larger, our computer can be used as a heater🔥 // if we make these larger, our computer can be used as a heater🔥
type Danum = u16; // you wont see any statuses for a long time with anything bigger than u16 type Danum = u16; // you wont see any statuses for a long time with anything bigger than u16
const EXP: usize = 8; // FIXME: If this goes lower than 7, somehow the mpsc breaks? const EXP: usize = 10; // FIXME: If this goes lower than 10, somehow the mpsc breaks sometimes
const CAP: usize = 1 << EXP; const CAP: usize = 1 << EXP;
const M: u128 = CAP as u128 * Danum::MAX as u128; const M: u128 = CAP as u128 * Danum::MAX as u128;