Files
ortools-clone/examples/tests/dual_loading.py
2014-01-27 04:57:00 +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()