Skip to content

Commit

Permalink
cargo test
Browse files Browse the repository at this point in the history
  • Loading branch information
shnarazk committed Feb 8, 2025
1 parent 5fab2c0 commit aea5c00
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/solver/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ pub trait SatSolverIF: Instantiate {
///
/// ```
/// use crate::splr::{*, var_vector::*};
/// use crate::splr::assign::VarManipulateIF; // for s.asg.assign()
/// use std::path::Path;
///
/// let mut s = Solver::try_from(Path::new("cnfs/uf8.cnf")).expect("can't load");
Expand Down
2 changes: 1 addition & 1 deletion src/solver/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub enum SolverEvent {
/// The SAT solver object consisting of 6 sub modules.
/// ```
/// use crate::splr::*;
/// use crate::splr::{assign::{VarManipulateIF}, state::{State, StateIF}, types::*, var_vector::VarRef};
/// use crate::splr::{state::{State, StateIF}, types::*, var_vector::VarRef};
/// use std::path::Path;
///
/// let mut s = Solver::try_from(Path::new("cnfs/sample.cnf")).expect("can't load");
Expand Down

0 comments on commit aea5c00

Please sign in to comment.