pub enum ProbEngine {
ExactDdnnf,
Mc,
}Expand description
Probabilistic engine selection.
Variants§
ExactDdnnf
Exact inference via d-DNNF compilation.
Mc
Approximate inference via Monte Carlo sampling.
Trait Implementations§
Source§impl Clone for ProbEngine
impl Clone for ProbEngine
Source§fn clone(&self) -> ProbEngine
fn clone(&self) -> ProbEngine
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProbEngine
Source§impl Debug for ProbEngine
impl Debug for ProbEngine
impl Eq for ProbEngine
Source§impl PartialEq for ProbEngine
impl PartialEq for ProbEngine
Source§fn eq(&self, other: &ProbEngine) -> bool
fn eq(&self, other: &ProbEngine) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProbEngine
Auto Trait Implementations§
impl Freeze for ProbEngine
impl RefUnwindSafe for ProbEngine
impl Send for ProbEngine
impl Sync for ProbEngine
impl Unpin for ProbEngine
impl UnsafeUnpin for ProbEngine
impl UnwindSafe for ProbEngine
Blanket Implementations§
impl<T> Allocation for T
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