Skip to content

Commit

Permalink
Expose DefaultTasoOptimiser when portmatching is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
lmondada committed Sep 26, 2023
1 parent 27c48d4 commit dfcf787
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/optimiser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
//! Currently, the only optimiser is TASO
pub mod taso;
pub use taso::{DefaultTasoOptimiser, TasoOptimiser};

#[cfg(feature = "portmatching")]
pub use taso::DefaultTasoOptimiser;
pub use taso::TasoOptimiser;

0 comments on commit dfcf787

Please sign in to comment.