File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -103,8 +103,7 @@ impl SolverModel for ClarabelProblem {
103103 let mut solver = self . into_solver ( ) ;
104104 solver. solve ( ) ;
105105 match solver. solution . status {
106- e @ ( SolverStatus :: PrimalInfeasible | SolverStatus :: AlmostPrimalInfeasible ) => {
107- eprintln ! ( "Clarabel error: {:?}" , e) ;
106+ SolverStatus :: PrimalInfeasible | SolverStatus :: AlmostPrimalInfeasible => {
108107 Err ( ResolutionError :: Infeasible )
109108 }
110109 SolverStatus :: Solved
Original file line number Diff line number Diff line change 103103/// You should never create expressions with variables that come from different
104104/// [ProblemVariables](crate::variable::ProblemVariables) instances.
105105///
106- /// ```should_panic
106+ /// ```should_panic,ignore-wasm
107107/// use good_lp::{variables, default_solver, SolverModel};
108108///
109109/// variables!{pb1: a;}
You can’t perform that action at this time.
0 commit comments