Files
ortools-clone/examples/tests/dual_loading.py
2014-05-22 20:13:16 +00:00

12 lines
244 B
Python

from ortools.constraint_solver import pywrapcp
from ortools.linear_solver import pywraplp
def main():
cp = pywrapcp.Solver("test")
lp = pywraplp.Solver("test", pywraplp.Solver.CLP_LINEAR_PROGRAMMING)
if __name__ == "__main__":
main()