0

I use Choco and when I try to solve a model, I get the message:

- Initial Propagation: Contradiction due to [48.89604359598426,4.0]

What does that mean? I could not find it in documents.

Dan
  • 7,286
  • 6
  • 49
  • 114
padawan
  • 1,295
  • 1
  • 17
  • 45

1 Answers1

0

As Sarge Borsch suggested in comments, it happens when there is a contradiction between one or more constraints and the solution space. The first number is the only solution found for a decision variable. The second number indicates that user imposed the variable to be that number.

Therefore, for instance, three solutions for x are 6, 9 and 10 but if there exists a constraint x < 0, that contradicts with the solutions found and the solver backtracks all the way back.

Which means, there are no solutions for the model.

Community
  • 1
  • 1
padawan
  • 1,295
  • 1
  • 17
  • 45