Reputation: 89
If I set the weight of a constraint to zero, does that mean that this constraint does not take effect? look like below:
@ConstraintWeight("Speaker conflict")
private HardMediumSoftScore speakerConflict = HardMediumSoftScore.ofHard(0);
Upvotes: 1
Views: 141
Reputation: 27312
Functionally: yes, the constraint has no score impact so is effectively ignored.
Implementation wise:
Upvotes: 1