pub struct Strategy {
pub naive_inputs: bool,
pub use_decay: bool,
}
Expand description
Abstraction and refinement strategy.
Fields§
§naive_inputs: bool
Whether each input should immediately cover only a single concrete input.
use_decay: bool
Whether each step output should decay to fully-unknown by default.
Auto Trait Implementations§
impl Freeze for Strategy
impl RefUnwindSafe for Strategy
impl Send for Strategy
impl Sync for Strategy
impl Unpin for Strategy
impl UnwindSafe for Strategy
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