pub struct MCTSConfiguration {
pub allow_invalid_tasks: bool,
pub visits: u32,
pub depth: u32,
pub exploration: f32,
pub discount_hl: f32,
pub planning_task_duration: Option<NonZeroU64>,
pub seed: Option<u64>,
}
Expand description
The configuration of an MCTS instance.
Fields§
§allow_invalid_tasks: bool
if true, invalid tasks do not abort expansion or rollout, but trigger re-planning
visits: u32
maximum number of visits per run
depth: u32
maximum tree depth per run in tick
exploration: f32
exploration factor to use in UCT to balance exploration and exploitation
discount_hl: f32
the discount factor for later reward, in half life (per agent’s turn or tick)
planning_task_duration: Option<NonZeroU64>
if not None
, the duration of the planning task
seed: Option<u64>
optionally, a user-given seed
Trait Implementations§
Source§impl Clone for MCTSConfiguration
impl Clone for MCTSConfiguration
Source§fn clone(&self) -> MCTSConfiguration
fn clone(&self) -> MCTSConfiguration
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MCTSConfiguration
impl Debug for MCTSConfiguration
Source§impl Default for MCTSConfiguration
impl Default for MCTSConfiguration
Source§fn default() -> MCTSConfiguration
fn default() -> MCTSConfiguration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MCTSConfiguration
impl RefUnwindSafe for MCTSConfiguration
impl Send for MCTSConfiguration
impl Sync for MCTSConfiguration
impl Unpin for MCTSConfiguration
impl UnwindSafe for MCTSConfiguration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.