Skip to content

Commit

Permalink
Remove the implementation of the Display trait for AddClauseOutput
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>

Co-authored-by: Bas Zalmstra <bas@prefix.dev>
  • Loading branch information
jjerphan and baszalmstra committed Jul 18, 2024
1 parent 7dc5346 commit fdc4765
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/solver/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ struct AddClauseOutput {
clauses_to_watch: Vec<ClauseId>,
}

impl Display for AddClauseOutput {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "AddClauseOutput {{ new_requires_clauses: {:?}, conflicting_clauses: {:?}, negative_assertions: {:?}, clauses_to_watch: {:?} }}", self.new_requires_clauses, self.conflicting_clauses, self.negative_assertions, self.clauses_to_watch)
}
}

/// Drives the SAT solving process
pub struct Solver<D: DependencyProvider, RT: AsyncRuntime = NowOrNeverRuntime> {
pub(crate) async_runtime: RT,
Expand Down

0 comments on commit fdc4765

Please sign in to comment.