https://github.com/scipopt/scipbasesuite
A SCIP minimal repository with batteries included
https://github.com/scipopt/scipbasesuite
Last synced: 7 months ago
JSON representation
A SCIP minimal repository with batteries included
- Host: GitHub
- URL: https://github.com/scipopt/scipbasesuite
- Owner: scipopt
- License: apache-2.0
- Created: 2023-06-23T13:54:47.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-07T16:29:58.000Z (about 3 years ago)
- Last Synced: 2025-03-22T20:45:28.895Z (over 1 year ago)
- Language: CMake
- Size: 15.6 KB
- Stars: 4
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ScipBaseSuite
A minimal SCIP suite with batteries included (the soplex LP solver) with defaults that should work for most settings.
## Installing
```shell
git submodule update --init --recursive
mkdir build
cd build
cmake ..
make -j
```
The first line fetches `scip` and `soplex` from their GitHub repositories.
The repositories can then be changed to another branch.
Use `cmake -DCMAKE_BUILD_TYPE=Debug` or `=Release` for debug or release mode respectively.
See `INSTALL.md` in the `scip` [repository](https://github.com/scipopt/scip) for more options.