powlib/examples/simple_pow.rs

18 lines
549 B
Rust
Raw Normal View History

2023-08-01 06:06:02 +02:00
2023-08-02 12:21:49 +02:00
use std::time::Instant;
use powlib::{self, gen::{POWRange, POWChallenge}, hash::hash_num, num::Num};
2023-08-01 06:06:02 +02:00
fn main() {
2023-08-02 12:21:49 +02:00
{
let num = Num::new(473823);
let time = Instant::now();
hash_num(num);
println!("Simple hash of {} took {} millis", u128::from(num), time.elapsed().as_millis());
}
{
let time = Instant::now();
let challenge = POWChallenge::make(POWRange::new(0, 20480));
println!("Solvling {} took {} seconds", challenge.solve_singlethread(), time.elapsed().as_secs_f32());
}
2023-08-01 06:06:02 +02:00
}