pub enum SelectionGoal {
FastBaseline,
StrongerOptimization,
GeneralModeling,
LogicalCounterexample,
}Expand description
What the use case values most.
Variants§
FastBaseline
Prefer a portable, low-latency baseline.
StrongerOptimization
Prefer stronger optimization if available, while keeping a baseline as fallback.
GeneralModeling
Prefer a general modeler over a domain-shaped Suggestor.
LogicalCounterexample
This is not optimization; route toward SMT/SAT counterexample search.
Trait Implementations§
Source§impl Clone for SelectionGoal
impl Clone for SelectionGoal
Source§fn clone(&self) -> SelectionGoal
fn clone(&self) -> SelectionGoal
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 moreSource§impl Debug for SelectionGoal
impl Debug for SelectionGoal
Source§impl PartialEq for SelectionGoal
impl PartialEq for SelectionGoal
Source§fn eq(&self, other: &SelectionGoal) -> bool
fn eq(&self, other: &SelectionGoal) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SelectionGoal
impl Eq for SelectionGoal
impl StructuralPartialEq for SelectionGoal
Auto Trait Implementations§
impl Freeze for SelectionGoal
impl RefUnwindSafe for SelectionGoal
impl Send for SelectionGoal
impl Sync for SelectionGoal
impl Unpin for SelectionGoal
impl UnsafeUnpin for SelectionGoal
impl UnwindSafe for SelectionGoal
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.