How do I deal with sparse matrices in JuMP?
For example, suppose I want to impose a constrain of the form:
A * x == 0
where A
is a sparse matrix and x
a vector of variables. I assume that the sparsity of A
could be exploited to make the optimization faster. How can I take advantage of this in JuMP?