pub enum ProcessedDynProp {
ProcessedAttrCount(ProcessedAttrCount),
ProcessedTrapSpace(ProcessedTrapSpace),
ProcessedHctlFormula(ProcessedHctlFormula),
}
Expand description
Enum for processed variants of dynamic properties.
Variants§
ProcessedAttrCount(ProcessedAttrCount)
ProcessedTrapSpace(ProcessedTrapSpace)
ProcessedHctlFormula(ProcessedHctlFormula)
Implementations§
source§impl ProcessedDynProp
impl ProcessedDynProp
Simplified constructors for processed dynamic properties.
sourcepub fn mk_hctl(id: &str, formula: &str) -> ProcessedDynProp
pub fn mk_hctl(id: &str, formula: &str) -> ProcessedDynProp
Create HCTL ProcessedDynProp
instance.
sourcepub fn mk_trap_space(
id: &str,
dataset: Dataset,
minimal: bool,
nonpercolable: bool,
) -> ProcessedDynProp
pub fn mk_trap_space( id: &str, dataset: Dataset, minimal: bool, nonpercolable: bool, ) -> ProcessedDynProp
Create trap-space ProcessedDynProp
instance.
To encode single observation, make a singleton dataset.
sourcepub fn mk_attr_count(
id: &str,
minimal: usize,
maximal: usize,
) -> ProcessedDynProp
pub fn mk_attr_count( id: &str, minimal: usize, maximal: usize, ) -> ProcessedDynProp
Create attractor-count ProcessedDynProp
instance.
Trait Implementations§
source§impl Clone for ProcessedDynProp
impl Clone for ProcessedDynProp
source§fn clone(&self) -> ProcessedDynProp
fn clone(&self) -> ProcessedDynProp
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 ProcessedDynProp
impl Debug for ProcessedDynProp
source§impl PartialEq for ProcessedDynProp
impl PartialEq for ProcessedDynProp
impl Eq for ProcessedDynProp
impl StructuralPartialEq for ProcessedDynProp
Auto Trait Implementations§
impl Freeze for ProcessedDynProp
impl RefUnwindSafe for ProcessedDynProp
impl Send for ProcessedDynProp
impl Sync for ProcessedDynProp
impl Unpin for ProcessedDynProp
impl UnwindSafe for ProcessedDynProp
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.