There is a difference between rust example in Clarabel.rs repo and here.
The solver needs to be unwrapped.
let mut solver = DefaultSolver::new(&P, &q, &A, &b, &cones, settings).unwrap();
instead of
let mut solver = DefaultSolver::new(&P, &q, &A, &b, &cones, settings);
There is a difference between rust example in Clarabel.rs repo and here.
The solver needs to be unwrapped.
instead of