summaryrefslogtreecommitdiff
path: root/engine/src/lib.rs
diff options
context:
space:
mode:
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 {