Skip to main content

AddConstraints

Trait AddConstraints 

Source
pub trait AddConstraints<C> {
    // Required method
    fn insert(&mut self, constraints: &C);
}
Expand description

This trait captures the ability to add constraints to a SAT solver.

Required Methods§

Source

fn insert(&mut self, constraints: &C)

Implementations on Foreign Types§

Source§

impl<T, C> AddConstraints<C> for [T]
where T: AddConstraints<C>,

Source§

fn insert(&mut self, constraints: &C)

Implementors§

Source§

impl<T, C> AddConstraints<C> for MultiSolver<T>
where T: AddConstraints<C>,