chs/examples/single_perft_test.rs
2022-10-31 13:31:34 +00:00

9 lines
188 B
Rust

use chs::{chess::perft::run_perft, constants::POSITION_6};
fn main() {
run_perft(
"rnb2k1r/pp1Pbppp/2p5/q7/2B5/P7/1PP1NnPP/RNBQK2R w KQ - 1 9",
1,
9,
);
}