source: src/main/java/genius/core/utility/RConstraint.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 319 bytes
Line 
1package genius.core.utility;
2
3import genius.core.Bid;
4
5public abstract class RConstraint {
6
7 public RConstraint() {
8 }
9
10 public abstract Integer getIssueIndex();
11
12 public abstract boolean willZeroUtility(Bid bid);
13
14 public abstract void addContraint(Integer issueIndex,
15 String conditionToBeCheck);
16}
Note: See TracBrowser for help on using the repository browser.