Changeset 468
- Timestamp:
- 08/08/08 19:30:05 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 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(); -
trunk/sources/HeuristicLab.StructureIdentification/FunctionLibraryInjector.cs
r467 r468 74 74 for(int i = 0; i < allowedIndexes.Length; i++) { 75 75 allowedIndexes[i] = allowedFeatures[i].Data; 76 i++;77 76 } 78 77 … … 81 80 82 81 scope.AddVariable(new Variable(scope.TranslateName(OPERATORLIBRARY), operatorLibrary)); 83 84 82 return null; 85 83 } -
trunk/sources/HeuristicLab.StructureIdentification/GPOperatorGroup.cs
r432 r468 56 56 if(c is SubOperatorTypeConstraint || c is AllSubOperatorsTypeConstraint) c.Changed += new EventHandler(UpdateTreeBounds); 57 57 } 58 RecalculateMinimalTreeBounds(); 58 59 OnOperatorAdded(op); 59 60 }
Note: See TracChangeset
for help on using the changeset viewer.