I am conceiving a global constraint with the ORtools solver, and to have a better understanding of my algorithm's behavior, i want to visualize the tree search generated by the solver.
So Is there any tool to visualize an ORtools tree search ?
I am conceiving a global constraint with the ORtools solver, and to have a better understanding of my algorithm's behavior, i want to visualize the tree search generated by the solver.
So Is there any tool to visualize an ORtools tree search ?
There are two c++ flags: cp_trace_search and cp_trace_propagation that will output very verbose logs on stderr.
I strongly recommend not using the original CP-Solver and encoding the constraint on CP-SAT.