hi there,
The R implementation of osqp via the sparse matrices in the Matrix package is fab. However, this is not quite right:
osqpSettings()
list()
osqpSettings(eps_rel = 1e-6)
$eps_rel
[1] 1e-06
ell ← 1e-6
osqpSettings(eps_rel = ell)
Error in as.numeric(l) :
cannot coerce type ‘symbol’ to vector of type ‘double’
Unf I cannot get into the underlying R code to see where the problem is.
Thanks, Jonathan.