Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/07/14 11:14:18 (10 years ago)
Author:
mkommend
Message:

#2119: Added interface for instrumented operators and adapted problem and encoding specific operators to provide instrumentation capabilities.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/Problems/UserDefinedProblem.cs

    r9456 r10291  
    235235    private sealed class EmptyUserDefinedProblemEvaluator : ParameterizedNamedItem, ISingleObjectiveEvaluator {
    236236
     237      public IEnumerable<IOperator> BeforeExecutionOperators { get { throw new NotSupportedException(); } }
     238      public IEnumerable<IOperator> AfterExecutionOperators { get { throw new NotSupportedException(); } }
     239
    237240      [StorableConstructor]
    238241      private EmptyUserDefinedProblemEvaluator(bool deserializing) : base(deserializing) { }
Note: See TracChangeset for help on using the changeset viewer.