ORTools version: 9.8.3753
OS: Ubuntu 22.04 (WSL2 on Windows 10 Pro 22H2)
Solver: CP-SAT
Language: Python
When running the solver it generated an error file which is 7.8 GB in size with all the list of variables in the model. The top few lines are as follows:
Traceback (most recent call last):
File "/mnt/d/Arnab/ubuntu/test.py", line 529, in <module>
main()
File "/mnt/d/Arnab/ubuntu/test.py", line 526, in main
solve(create_data_model())
File "/mnt/d/Arnab/ubuntu/test.py", line 431, in solve
status = solver.solve(model, solution_callback)
File "/home/qwixpert/.local/lib/python3.10/site-packages/ortools/sat/python/cp_model.py", line 3126, in solve
self.__solution = self.__solve_wrapper.solve(model.proto)
TypeError: solve(): incompatible function arguments. The following argument types are supported:
1. (self: ortools.sat.python.swig_helper.SolveWrapper, arg0: operations_research::sat::CpModelProto) -> operations_research::sat::CpSolverResponse
Invoked with: <ortools.sat.python.swig_helper.SolveWrapper object at 0x7fad323ea6f0>, variables {...
...list of every variable in the model