Sungho Shin

Results 31 issues of Sungho Shin

Currently, the `solve!` function is not properly tested, and a test need to be added

DELETED

Add docstrings

Currently, `InteriorPointSolver` keeps views of primal vectors, such as `x_lr`, `x_ur`, `dx_lr`, `dx_ur`, etc. We can create a new data structure `PrimalVector` and keep these views inside `PrimalVector` to make...

Currently, MadNLP assumes COO structure. But the user should be able to tell MadNLP if the sparsity structure is CSC or dense

The documentation branch is added [here](https://github.com/sshin23/MadNLP.jl/tree/ss/documentation). The TODO list is below (will keep updated): - [ ] Home: explain key features. Things to highlight: being a native-julia solver, interface to...

It would be good to add support for AMDGPU. We only need to add rocBLAS interface to `MadNLPLapackGPU`.

The heuristics discussed in Section 3.2 of the Ipopt paper is not implemented in MadNLP. This should be implemented for the performance improvement @article{wachter2006implementation, title={On the implementation of an interior-point...

With DocStringExtensions, we can generate docstring for the Type's fields with the following syntax: ``` """ This is an X """ struct X "This is a" a::String "This is b"...

Now that we have fully migrated to NLPModels, I think it is a great time to implement an interface to Nonconvex.jl. I think we can either create an extension package...