We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b211d8d commit ceea917Copy full SHA for ceea917
crates/tako/src/internal/worker/resources/solver.rs
@@ -24,4 +24,10 @@ pub fn create_solver() -> impl LpSolver {
24
use super::solver_microlp::MicrolpSolver;
25
MicrolpSolver::new()
26
}
27
+ #[cfg(not(any(feature = "highs", feature = "microlp")))]
28
+ {
29
+ compile_error!(
30
+ "You have to enable either the `highs` or the `microlp` feature using `cargo build ... --features <highs/microlp>`"
31
+ )
32
+ }
33
0 commit comments