Changeset 10479 for branches/SpectralKernelForGaussianProcesses/HeuristicLab.Problems.QuadraticAssignment
- Timestamp:
- 02/20/14 14:29:01 (11 years ago)
- Location:
- branches/SpectralKernelForGaussianProcesses
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SpectralKernelForGaussianProcesses
- Property svn:mergeinfo changed
-
branches/SpectralKernelForGaussianProcesses/HeuristicLab.Problems.QuadraticAssignment
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.QuadraticAssignment (added) merged: 10291
- Property svn:mergeinfo changed
-
branches/SpectralKernelForGaussianProcesses/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators/QAPEvaluator.cs
r9456 r10479 30 30 namespace HeuristicLab.Problems.QuadraticAssignment { 31 31 [StorableClass] 32 public class QAPEvaluator : SingleSuccessorOperator, IQAPEvaluator {32 public class QAPEvaluator : InstrumentedOperator, IQAPEvaluator { 33 33 34 34 public ILookupParameter<Permutation> PermutationParameter { … … 78 78 } 79 79 80 public override IOperation Apply() {80 public override IOperation InstrumentedApply() { 81 81 Permutation assignment = PermutationParameter.ActualValue; 82 82 DoubleMatrix weights = WeightsParameter.ActualValue; … … 86 86 QualityParameter.ActualValue = new DoubleValue(quality); 87 87 88 return base. Apply();88 return base.InstrumentedApply(); 89 89 } 90 90 }
Note: See TracChangeset
for help on using the changeset viewer.