Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/BoundsChecker.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/BoundsChecker.cs
r4722 r5177 80 80 /// <remarks>Calls <see cref="Apply(RealVector, DoubleMatrix)"/>.</remarks> 81 81 /// <inheritdoc select="returns" /> 82 public override IOperation Apply( ) {82 public override IOperation Apply(IExecutionContext context) { 83 83 if (RealVectorParameter.ActualValue == null) throw new InvalidOperationException("BoundsChecker: Parameter " + RealVectorParameter.ActualName + " could not be found."); 84 84 if (BoundsParameter.ActualValue == null) throw new InvalidOperationException("BoundsChecker: Parameter " + BoundsParameter.ActualName + " could not be found."); 85 85 Apply(RealVectorParameter.ActualValue, BoundsParameter.ActualValue); 86 return base.Apply( );86 return base.Apply(context); 87 87 } 88 88 }
Note: See TracChangeset
for help on using the changeset viewer.