Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rschwarz/zimplayground
Solve Zimpl models with SCIP in your browser.
https://github.com/rschwarz/zimplayground
Last synced: 23 days ago
JSON representation
Solve Zimpl models with SCIP in your browser.
- Host: GitHub
- URL: https://github.com/rschwarz/zimplayground
- Owner: rschwarz
- License: other
- Created: 2015-02-19T16:18:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-22T06:54:32.000Z (over 8 years ago)
- Last Synced: 2024-06-13T17:29:23.213Z (5 months ago)
- Language: Go
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Solve Zimpl models with the SCIP solver via the browser
[![Go Report Card](https://goreportcard.com/badge/github.com/leethargo/zimplayground)](https://goreportcard.com/report/github.com/leethargo/zimplayground)
## Purpose
Inspired by the [Go Playground](https://play.golang.org/), let users solve small
[Zimpl](http://zimpl.zib.de/) models without the need to install anything. The
models are solved on the server with [SCIP](http://scip.zib.de/). The log output
and solution values are provided to the caller.Results are also stored and can be shared between users via unique IDs
from hashes of the input data.## Usage
```
$ ./zimplayground -h
Usage of ./zimplayground:
-address=":8080": hostname:port of server
-mem=100: SCIP memory limit (MB)
-processes=4: limit on number of SCIP processes
-scipExec="scip": (path to) scip executable
-sleep=100: sleep before redirect to results (ms)
-time=180: SCIP time limit (s)
```## Dependencies
It is assumed that SCIP (with Zimpl linked) is installed on the server and
available in the `PATH` or explicitely specified as command-line flag.See the [SCIP homepage](http://scip.zib.de) for documentation on the
installation process.## Licensing
All of this code is MIT licensed. SCIP is available for academic use under the
terms of the [ZIB academic license](http://scip.zib.de/academic.txt).