https://github.com/scipopt/soplex.jl
Julia wrapper for SoPlex
https://github.com/scipopt/soplex.jl
Last synced: 9 months ago
JSON representation
Julia wrapper for SoPlex
- Host: GitHub
- URL: https://github.com/scipopt/soplex.jl
- Owner: scipopt
- License: mit
- Created: 2021-02-23T09:12:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-27T16:25:55.000Z (over 3 years ago)
- Last Synced: 2025-01-28T00:35:15.092Z (over 1 year ago)
- Language: Julia
- Size: 76.2 KB
- Stars: 4
- Watchers: 9
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SoPlex
This is a Julia wrapper for the [SoPlex](https://soplex.zib.de/) (Sequential object-oriented simPlex) linear optimization solver
based on an implementation of the primal and dual revised simplex algorithm.
**This package is at a very early stage**, use at your own risk.
Feedback is welcome, but things are expected to break.
Contributions to fix the failing tests are welcome.
## Usage
The solver implements [MathOptInterface](https://github.com/jump-dev/MathOptInterface.jl) and can be used directly or from JuMP.
## Installing
The package is not registered yet, install it with:
```julia
using Pkg
Pkg.add("https://github.com/scipopt/SoPlex.jl")
```