Science Score: 57.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 2 DOI reference(s) in README -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.2%) to scientific vocabulary
Keywords
Repository
An active set-based NLP solver
Basic Info
Statistics
- Stars: 19
- Watchers: 3
- Forks: 1
- Open Issues: 1
- Releases: 4
Topics
Metadata Files
README.md
SLEQP
Introduction
SLEQP is a software package for large-scale nonlinear optimization. It is designed to find (local) solutions of mathematical optimization problems of the form
``` min f(x) x ∈ ℝⁿ
s.t. l ≤ c(x) ≤ u xl ≤ x ≤ xu ```
where f: ℝⁿ --> ℝ is the optimization objective, and c: ℝⁿ --> ℝᵐ
are optimization constraints.
The vectors l, u ∈ ℝᵐ denote the lower and upper bounds on the
nonlinear constraints, while the vectors x_l, x_u ∈ ℝⁿ are bounds on
the variables. The functions f(x) and c(x) can be nonlinear and
nonconvex, but should be twice continuously differentiable.
Publication
Details regarding this implementation may be found in the accompanying article
Hansknecht, C., & Kirches, C. (2023). SLEQP: An open-source package for nonlinear programming. Proceedings in Applied Mathematics and Mechanics, 00, e202300241. https://doi.org/10.1002/pamm.202300241
Dependencies
For the solution of the linear programming problem, one of the following linear programming libraries is required:
For factorizations, one of the following factorization libraries is required:
Additional dependencies: * trlib for nonconvex trust region QP solving
Optional dependencies for the python bindings:
* Python itself, including python-build
Optional dependencies for the mex bindings: * MATLAB, or * Octave
Optional dependencies for the AMPL bindings: * The AMPL solver library ASL
Optional dependencies for the unit tests: * Check
Installation
In order to compile this package, use the following sequence of commands:
mkdir build && cd build
cmake .. <OPTIONS>
make
[make build_tests && make test]
Options
Use the following options to customize the build process:
SLEQP_ENABLE_UNIT_TESTS: Enables the unit tests (default:On)SLEQP_ENABLE_CUTEST: Enables the CUTest suite (default:Off)SLEQP_ENABLE_PYTHON: Enables the build of the python bindings (default :On)SLEQP_LPS: Set to specify a linear programming librarySLEQP_FACT: Set to specify a factorization librarySLEQP_ENABLE_MATLAB_MEX: Enables the build of mex bindings using MATLAB (default :Off)SLEQP_ENABLE_OCTAVE_MEX: Enables the build of mex bindings using Octave (default :Off)SLEQP_ENABLE_AMPL: Enables the build of the AMPL interface (default:Off)
References
- Byrd, Richard H., et al. "An algorithm for nonlinear optimization using linear programming and equality constrained subproblems." Mathematical Programming 100.1 (2003): 27-48.
- Lenders, Felix, Christian Kirches, and Andreas Potschka. "trlib: A vector-free implementation of the GLTR method for iterative solution of the trust region problem." Optimization Methods and Software 33.3 (2018): 420-449.
Owner
- Name: Christoph Hansknecht
- Login: chrhansk
- Kind: user
- Repositories: 34
- Profile: https://github.com/chrhansk
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use this software, please cite it as below." authors: - family-names: "Hansknecht" given-names: "Christoph" orcid: "https://orcid.org/0000-0003-3948-9344" - family-names: "Kirches" given-names: "Christian" orcid: "https://orcid.org/0000-0002-3441-8822" title: "SLEQP: An open-source package for nonlinear programming" doi: 10.1002/pamm.202300241 url: "https://github.com/chrhansk/sleqp"
GitHub Events
Total
- Watch event: 3
Last Year
- Watch event: 3
Dependencies
- numpy *
- scipy *
- pytest * test