-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New initialization methods #89
Comments
Yes, it's a good idea. I implemented a routine |
I missed |
Yes, I agree. I would like to compile the recent release 3.1.0 with Yggdrasil + LBT before, but I haven't had much time to work on that recently. |
Done in #91. |
I will tag a new release after #93. |
Internally, QRMumps stores its matrix in COO format. In NLPModels and NLSModels, we obtain Jacobians and Hessians in COO format. However, the only QRMumps.jl constructor that takes a matrix as argument requires it to be in CSC format.
I suggest adding two new constructors:
rows
,cols
andvals
;In addition, when only
vals
changes (butrows
andcols
stay the same), is there a way to update the internalspmat
structure instead of allocating a new one?The text was updated successfully, but these errors were encountered: