Skip to content

Commit

Permalink
fix unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
aborgna-q committed Sep 22, 2023
1 parent d711c31 commit af3801c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/optimiser/taso.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ mod worker;
use crossbeam_channel::select;
pub use eq_circ_class::{load_eccs_json_file, EqCircClass};

use std::io;
use std::num::NonZeroUsize;
use std::time::{Duration, Instant};

Expand All @@ -37,6 +36,9 @@ use crate::rewrite::Rewriter;

use self::log::TasoLogger;

#[cfg(feature = "portmatching")]
use std::io;

/// The TASO optimiser.
///
/// Adapted from [Quartz][], and originally [TASO][].
Expand Down

0 comments on commit af3801c

Please sign in to comment.