Changeset 468 for trunk/sources/HeuristicLab.Functions
- Timestamp:
- 08/08/08 19:30:05 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Functions/Variable.cs
r467 r468 188 188 prev = allowedIndexes[i]; 189 189 } 190 IntBoundedConstraint range = new IntBoundedConstraint(); 191 range.LowerBound = start; 192 range.LowerBoundEnabled = true; 193 range.LowerBoundIncluded = true; 194 range.UpperBound = prev; 195 range.UpperBoundEnabled = true; 196 range.UpperBoundIncluded = true; 197 constraints.Add(range); 190 198 if(constraints.Count > 1) { 191 199 OrConstraint or = new OrConstraint();
Note: See TracChangeset
for help on using the changeset viewer.