Pythonライブラリ PuLP とは
■PuLPはCOIN-OR(※1)で開発しているPythonライブラリ
■ LP / IP(※2)を記述するモデリング言語でMPSファイルを作成する
■ PuLPのデフォルトのソルバーはCBC (※3)
■ GitHub URL:https://github.com/coin-or/pulp
■ インストール
※1 COIN-OR:Open Source for the Operations Research Community
※2 LP/IP:Linear Programming/Integer Programming
※3 CBC:Coin-or branch and cut
PuLP is an LP/IP modeler written in Python. It can generate MPS or LP files
and call GLPK, CLP/CBC, CPLEX, and Gurobi to solve linear problems.
$pip install pulp
PuLP CBC