How can I ensure that feasibility_pump
and rins/rens
are added to the subsolver list and the CP-SAT run is deterministic?
#4541
Replies: 1 comment
-
Unfortunately, we have not implemented determinism for these workers. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to configure the CP-SAT solver to use
feasibility_pump
andrins/rens
strategies in a deterministic manner.When I set
num_workers: 1
, themain
algorithm does not find a feasible solution for my problem within the required time. However, withfeasibility_pump
andrins/rens
, feasible solutions are found within the required time.With
num_workers: 2
andinterleave_search: false
, these subsolvers are included and both subsolvers appear in the subsolver list:However, when I set
interleave_search
to true to have a deterministic search,feasibility_pump
andrins/rens
are excluded from the subsolver list and a solution is not found within the required time.Explicitly setting
use_feasibility_pump
anduse_rins_lns
to true has not resolved this issue.How can I ensure to use
feasibility_pump
andrins/rens
and that the CP-SAT run is deterministic at the same time?Beta Was this translation helpful? Give feedback.
All reactions