aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2023-01-24 20:55:21 +0300
committereug-vs <eugene@eug-vs.xyz>2023-01-24 20:55:21 +0300
commit4a62a723f052ed0506cf9342c009cc315a8379a3 (patch)
tree2ba5bb20d17776268259fc9d446a52ba0f9dd1d0 /src
parent36c8c6bd84513fe2a8c9956b842baaee510b25c0 (diff)
downloadchessnost-4a62a723f052ed0506cf9342c009cc315a8379a3.tar.gz
bench: setup perft benchmarking
Diffstat (limited to 'src')
-rw-r--r--src/board.rs2
-rw-r--r--src/lib.rs5
-rw-r--r--src/main.rs6
3 files changed, 6 insertions, 7 deletions
diff --git a/src/board.rs b/src/board.rs
index 3343702..9ff81b1 100644
--- a/src/board.rs
+++ b/src/board.rs
@@ -501,7 +501,7 @@ impl Board {
self.ply -= 1;
}
- fn perft(&mut self, depth: u8, print: bool) -> (u64, u64, u64, u64, u64) {
+ pub fn perft(&mut self, depth: u8, print: bool) -> (u64, u64, u64, u64, u64) {
if depth == 0 {
return (1, 0, 0, 0, 0) // This a leaf, exactly one node
}
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..2eaef2b
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,5 @@
+pub mod square;
+pub mod bitboard;
+pub mod board;
+pub mod attacks;
+pub mod moves;
diff --git a/src/main.rs b/src/main.rs
index 9a38593..e7a11a9 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,9 +1,3 @@
-mod square;
-mod bitboard;
-mod board;
-mod attacks;
-mod moves;
-
fn main() {
println!("Hello, world!");
}