Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/05/13 13:12:54 (11 years ago)
Author:
sforsten
Message:

#1980:

  • added be project Optimization.Operators.LCS
  • added default rule strategies for GAssist
Location:
branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3

    • Property svn:ignore
      •  

        old new  
        11*.user
         2Plugin.cs
  • branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/DecisionListCreator.cs

    r9334 r9342  
    2020#endregion
    2121
    22 using HeuristicLab.Algorithms.GAssist;
    2322using HeuristicLab.Common;
    2423using HeuristicLab.Core;
    2524using HeuristicLab.Data;
    2625using HeuristicLab.Operators;
     26using HeuristicLab.Optimization.Operators.LCS;
    2727using HeuristicLab.Parameters;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    5252      get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
    5353    }
     54    public IValueLookupParameter<IAction> DefaultActionParameter {
     55      get { return (IValueLookupParameter<IAction>)Parameters["DefaultAction"]; }
     56    }
    5457    #endregion
    5558
     
    6770      Parameters.Add(new LookupParameter<DecisionList>("DecisionList", ""));
    6871      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic manipulation operators."));
    69 
     72      Parameters.Add(new ValueLookupParameter<IAction>("DefaultAction", ""));
    7073    }
    7174
Note: See TracChangeset for help on using the changeset viewer.