Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/28/20 11:52:17 (4 years ago)
Author:
mkommend
Message:

#2521: Added storable type attributes to interfaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/ISolutionContext.cs

    r17382 r17459  
    4444  }
    4545
    46 
     46  [StorableType("3A5CA150-1122-4D13-B65D-55D7EC86198F")]
    4747  public interface ISingleObjectiveSolutionContext<TEncodedSolution> : ISolutionContext<TEncodedSolution>
    48     where TEncodedSolution : class, IEncodedSolution {
     48      where TEncodedSolution : class, IEncodedSolution {
    4949    //TODO discuss with abeham hiding of base property
    5050    new ISingleObjectiveEvaluationResult EvaluationResult { get; set; }
    5151  }
    5252
     53  [StorableType("3110C8C1-11FE-4A24-9B4E-E2EB3B97CBE9")]
    5354  public interface IMultiObjectiveSolutionContext<TEncodedSolution> : ISolutionContext<TEncodedSolution>
    54     where TEncodedSolution : class, IEncodedSolution {
     55      where TEncodedSolution : class, IEncodedSolution {
    5556    new IMultiObjectiveEvaluationResult EvaluationResult { get; set; }
    5657  }
Note: See TracChangeset for help on using the changeset viewer.