chs/examples/single_perft_test.rs

10 lines
188 B
Rust
Raw Normal View History

2022-10-31 13:25:32 +00:00
use chs::{chess::perft::run_perft, constants::POSITION_6};
fn main() {
2022-10-31 13:31:34 +00:00
run_perft(
"rnb2k1r/pp1Pbppp/2p5/q7/2B5/P7/1PP1NnPP/RNBQK2R w KQ - 1 9",
1,
9,
);
2022-10-31 13:25:32 +00:00
}