remove todo

This commit is contained in:
Mystikfluu 2023-02-25 13:03:53 +01:00
parent 2be32219a7
commit 069898b620

View File

@ -38,13 +38,6 @@ fn main() {
let sys_time = SystemTime::now(); let sys_time = SystemTime::now();
// let (tx, rx) = mpsc::channel();
// thread::spawn(move || {
// let val = String::from("hi");
// tx.send(val).unwrap();
// });
// TODO: multithreading
let n:f64 = 1_000_000f64; let n:f64 = 1_000_000f64;
let nthprime_approx = p(n*1.01) as u128; let nthprime_approx = p(n*1.01) as u128;
const THREADS: u128 = 12; const THREADS: u128 = 12;