summaryrefslogtreecommitdiff
path: root/engine/src/lib.rs
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2023-12-21 17:40:03 -0500
committerMicha White <botahamec@outlook.com>2023-12-21 17:40:03 -0500
commit0185f2ef9159a868afa03c6e8d76f6d77f52f4f9 (patch)
treeafa444daaba94fec6ebb4fca31ef5c84c8609ce8 /engine/src/lib.rs
parent369870509cf17f8bb7dcb73c497b7fb263685cfb (diff)
Recreated benchmark tool for new API
Diffstat (limited to 'engine/src/lib.rs')
-rw-r--r--engine/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/src/lib.rs b/engine/src/lib.rs
index 8139530..27a1f2d 100644
--- a/engine/src/lib.rs
+++ b/engine/src/lib.rs
@@ -131,9 +131,9 @@ pub enum SearchLimit {
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
pub struct ActualLimit {
- nodes: Option<NonZeroUsize>,
- depth: Option<NonZeroU8>,
- time: Option<Duration>,
+ pub nodes: Option<NonZeroUsize>,
+ pub depth: Option<NonZeroU8>,
+ pub time: Option<Duration>,
}
pub trait Frontend: Sync {