Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/19 23:12:05 (5 years ago)
Author:
gkronber
Message:

#2520: removed usages of AllowOneWay

Location:
trunk/HeuristicLab.Optimization/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Optimization/3.3/MetaOptimizers/BatchRun.cs

    r16565 r16796  
    112112    // BackwardsCompatibility3.3
    113113    #region Backwards compatible code (remove with 3.4)
    114     [Storable(AllowOneWay = true)]
     114    [Storable(OldName = "algorithm")]
    115115    private IAlgorithm algorithm {
    116116      set { optimizer = value; }
  • trunk/HeuristicLab.Optimization/3.3/Problems/Problem.cs

    r16565 r16796  
    8484    // BackwardsCompatibility3.3
    8585    #region Backwards compatible code, remove with 3.4
    86     [Storable(Name = "Operators", AllowOneWay = true)]
     86    [Storable(OldName = "Operators")]
    8787    private IEnumerable<IOperator> StorableOperators {
    8888      set {
  • trunk/HeuristicLab.Optimization/3.3/RunCollection.cs

    r16565 r16796  
    125125    // BackwardsCompatibility3.3
    126126    #region Backwards compatible code, remove with 3.4
    127     [Storable(AllowOneWay = true)]
     127    [Storable(OldName = "AlgorithmName")]
    128128    private string AlgorithmName {
    129129      set { optimizerName = value; }
Note: See TracChangeset for help on using the changeset viewer.