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

13 lines
267 B
Python
Raw Normal View History

2021-12-07 09:13:09 +01:00
#!/usr/bin/env python3
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()