pub enum BuildEncodings {
Once,
Rebuild,
CleanRebuild,
}
Expand description
Possible options for building objective encodings in divide and conquer
Variants§
Once
Only once after the first ideal point
Rebuild
Rebuild after each ideal point but don’t restart the oracle
CleanRebuild
Restart the oracle after each ideal point and rebuild the encodings
Trait Implementations§
Source§impl Clone for BuildEncodings
impl Clone for BuildEncodings
Source§fn clone(&self) -> BuildEncodings
fn clone(&self) -> BuildEncodings
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 BuildEncodings
impl Debug for BuildEncodings
Source§impl Default for BuildEncodings
impl Default for BuildEncodings
Source§fn default() -> BuildEncodings
fn default() -> BuildEncodings
Returns the “default value” for a type. Read more
Source§impl Display for BuildEncodings
impl Display for BuildEncodings
Source§impl PartialEq for BuildEncodings
impl PartialEq for BuildEncodings
impl Copy for BuildEncodings
impl Eq for BuildEncodings
impl StructuralPartialEq for BuildEncodings
Auto Trait Implementations§
impl Freeze for BuildEncodings
impl RefUnwindSafe for BuildEncodings
impl Send for BuildEncodings
impl Sync for BuildEncodings
impl Unpin for BuildEncodings
impl UnwindSafe for BuildEncodings
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more