Hi,
i am trying to use CPsolver (ortools 9.3.10497, python 3.9.13, M1 processor) for my project, and I am getting this BUS error:
Process finished with exit code 138 (interrupted by signal 10: SIGBUS)
when my script calls this line:
status = solver.SolveWithSolutionCallback(model, solution_printer)
I tried to recreate the issue with the self-sustained minimal script below, but this example script runs properly.
from ortools.sat.python import cp_model
solver = cp_model.CpSolver()
solver.parameters.max_time_in_seconds = 600
solution_printer = cp_model.ObjectiveSolutionPrinter()
model = cp_model.CpModel()
status = solver.SolveWithSolutionCallback(model, solution_printer)
solution_status = solver.StatusName(status)
After searching online, there are suggestions that the error might be related to multiple tests running simultaneously, but I'm not sure.
Anybody encountered this issue before?
Thanks