https://github.com/stefanloerwald/panda
https://github.com/stefanloerwald/panda
combinatorial-optimization polytope polytopes
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stefanloerwald/panda
- Owner: stefanloerwald
- Created: 2019-05-03T14:21:25.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-12-31T14:01:01.000Z (over 2 years ago)
- Last Synced: 2025-05-16T12:13:44.650Z (11 months ago)
- Topics: combinatorial-optimization, polytope, polytopes
- Language: C++
- Homepage: http://comopt.ifi.uni-heidelberg.de/software/PANDA/index.html
- Size: 164 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Official website
The official website for PANDA can be found here:
http://comopt.ifi.uni-heidelberg.de/software/PANDA/
### Note
This is an unofficial repository, although by the original author, solely for the purpose of having an archive of the software.
If you found any bug, please raise an issue.
### License
Creative Commons Attribution-NonCommercial 4.0 International License
http://creativecommons.org/licenses/by-nc/4.0/
### Docker
For convenience there is a docker image available.
```
docker run -i --rm -v"$(pwd)":/data panda panda /data/samples/panda_format/sample_1
// does the same as panda samples/panda_format/sample_1
// if you had installed panda manually
```
Explanation of the above command:
```
docker run -i --rm -v"$(pwd)":/data panda panda /data/samples/panda_format/sample_1
^ ^ ^ ^ ^ ^
| | | | | any panda command line argument goes here
| | | | |
| | | | run the panda command
| | | |
| | | use the panda image
| | |
| | map the current directory, such that files become available to the container
| |
| delete container when done
|
run in interactive mode such that output will be printed to terminal
```
#### Using the panda docker image on [hub.docker.com](https://hub.docker.com/r/pandacomopt/panda)
```
docker pull pandacomopt/panda
docker tag pandacomopt/panda panda
```
#### Building the docker image manually:
```
docker build -t panda .
```