pub struct SolverOptions {
pub restart_options: RestartOptions,
pub learning_clause_minimisation: bool,
pub proof_log: ProofLog,
pub random_generator: SmallRng,
}Expand description
Options for the Solver which determine how it behaves.
Fields§
§restart_options: RestartOptionsThe options used by the restart strategy.
learning_clause_minimisation: boolWhether learned clause minimisation should take place
proof_log: ProofLogThe proof log.
random_generator: SmallRngA random generator which is used by the Solver, passing it as an
argument allows seeding of the randomization.
Trait Implementations§
source§impl Debug for SatisfactionSolverOptions
impl Debug for SatisfactionSolverOptions
Auto Trait Implementations§
impl Freeze for SatisfactionSolverOptions
impl RefUnwindSafe for SatisfactionSolverOptions
impl Send for SatisfactionSolverOptions
impl Sync for SatisfactionSolverOptions
impl Unpin for SatisfactionSolverOptions
impl UnwindSafe for SatisfactionSolverOptions
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> 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