Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 28, 2020 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/98150b8c720d14bb21a1d6dde6b6f407 to your computer and use it in GitHub Desktop.
Save r-ryantm/98150b8c720d14bb21a1d6dde6b6f407 to your computer and use it in GitHub Desktop.
/nix/store/mcinzrh60pgfp2a0xs0bym4zvidlc6l8-python3.7-PuLP-2.3.1
├── bin
│   └── pulptest
├── lib
│   └── python3.7
│   └── site-packages
│   ├── pulp
│   │   ├── apis
│   │   │   ├── choco_api.py
│   │   │   ├── coin_api.py
│   │   │   ├── core.py
│   │   │   ├── cplex_api.py
│   │   │   ├── glpk_api.py
│   │   │   ├── gurobi_api.py
│   │   │   ├── __init__.py
│   │   │   ├── mipcl_api.py
│   │   │   ├── mosek_api.py
│   │   │   ├── __pycache__
│   │   │   │   ├── choco_api.cpython-37.pyc
│   │   │   │   ├── coin_api.cpython-37.pyc
│   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   ├── cplex_api.cpython-37.pyc
│   │   │   │   ├── glpk_api.cpython-37.pyc
│   │   │   │   ├── gurobi_api.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mipcl_api.cpython-37.pyc
│   │   │   │   ├── mosek_api.cpython-37.pyc
│   │   │   │   ├── scip_api.cpython-37.pyc
│   │   │   │   └── xpress_api.cpython-37.pyc
│   │   │   ├── scip_api.py
│   │   │   └── xpress_api.py
│   │   ├── constants.py
│   │   ├── __init__.py
│   │   ├── pulp.cfg.buildout
│   │   ├── pulp.cfg.linux
│   │   ├── pulp.cfg.osx
│   │   ├── pulp.cfg.win
│   │   ├── pulp.py
│   │   ├── __pycache__
│   │   │   ├── constants.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── pulp.cpython-37.pyc
│   │   │   ├── sparse.cpython-37.pyc
│   │   │   └── utilities.cpython-37.pyc
│   │   ├── solverdir
│   │   │   ├── cbc
│   │   │   │   ├── linux
│   │   │   │   │   ├── 32
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   └── 64
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── osx
│   │   │   │   │   └── 64
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── win
│   │   │   │   ├── 32
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── 64
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── choco
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── CoinMP.dll
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── sparse.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── run_tests.cpython-37.pyc
│   │   │   │   ├── test_amply.cpython-37.pyc
│   │   │   │   ├── test_examples.cpython-37.pyc
│   │   │   │   └── test_pulp.cpython-37.pyc
│   │   │   ├── run_tests.py
│   │   │   ├── test_amply.py
│   │   │   ├── test_examples.py
│   │   │   └── test_pulp.py
│   │   └── utilities.py
│   └── PuLP-2.3.1.dist-info
│   ├── AUTHORS
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
30 directories, 72 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment