Skip to content

Commit

Permalink
Remove unused imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
KarelPeeters committed Oct 26, 2023
1 parent 94c8d91 commit 6d41004
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/branchrule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use crate::ffi;
use crate::variable::Variable;
use std::rc::Rc;
use scip_sys::SCIP_Result;
use crate::model::WithSolvingStats;

/// A trait for defining custom branching rules.
pub trait BranchRule {
Expand Down Expand Up @@ -57,7 +56,7 @@ pub struct BranchingCandidate {
#[cfg(test)]
mod tests {
use super::*;
use crate::model::{ModelWithProblem, ProblemCreated};
use crate::model::ModelWithProblem;
use crate::Solving;
use crate::{model::Model, status::Status};

Expand Down
2 changes: 1 addition & 1 deletion src/pricer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl From<PricerResultState> for SCIP_Result {
mod tests {
use super::*;
use crate::{
model::{Model, ModelWithProblem, ProblemCreated},
model::{Model, ModelWithProblem},
status::Status,
variable::VarType, Solving, ProblemOrSolving,
};
Expand Down

0 comments on commit 6d41004

Please sign in to comment.