Files
ortools-clone/examples/tests/dual_loading.py

12 lines
244 B
Python
Raw Normal View History

2014-01-27 04:57:00 +00:00
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)
2014-05-22 20:13:16 +00:00
if __name__ == "__main__":
2014-01-27 04:57:00 +00:00
main()