pub enum PropLevel {
None,
Gac,
SacBounds,
Sac,
SsacBounds,
Ssac,
}Expand description
Propagation strength, matching minion’s PropagationType.
Applied either once at preprocess time (via
RunOptions::preprocess) or at every search node (via
RunOptions::prop_node). Strengthens from None (no
propagation — only valid for preprocess, not prop_node) through
GAC (generalised arc consistency, the default per-node level)
up to SSAC (singleton-SAC).
Variants§
Trait Implementations§
impl Copy for PropLevel
impl Eq for PropLevel
impl StructuralPartialEq for PropLevel
Auto Trait Implementations§
impl Freeze for PropLevel
impl RefUnwindSafe for PropLevel
impl Send for PropLevel
impl Sync for PropLevel
impl Unpin for PropLevel
impl UnsafeUnpin for PropLevel
impl UnwindSafe for PropLevel
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,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
None: 0 bytesGac: 0 bytesSacBounds: 0 bytesSac: 0 bytesSsacBounds: 0 bytesSsac: 0 bytes