Files
ortools-clone/examples/tests/dual_loading.py
2022-06-03 17:10:58 +02:00

13 lines
240 B
Python
Executable File

#!/usr/bin/env python3
from ortools.constraint_solver import pywrapcp
from ortools.linear_solver import pywraplp
def main():
cp = pywrapcp.Solver("test")
lp = pywraplp.Solver.CreateSolver('GLOP')
if __name__ == "__main__":
main()