Changeset 9342 for branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Interfaces
- Timestamp:
- 04/05/13 13:12:54 (12 years ago)
- Location:
- branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3
- Property svn:ignore
-
old new 1 1 *.user 2 Plugin.cs
-
- Property svn:ignore
-
branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Interfaces/IDecisionListClassificationProblemData.cs
r9334 r9342 51 51 52 52 IEnumerable<IAction> FetchAction(IEnumerable<int> rows); 53 IAction FetchAction(int rows); 53 54 54 55 event EventHandler Changed; -
branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Interfaces/IDecisionListCreator.cs
r9334 r9342 20 20 #endregion 21 21 22 using HeuristicLab.Algorithms.GAssist;23 22 using HeuristicLab.Core; 24 23 using HeuristicLab.Data; 25 24 using HeuristicLab.Optimization; 25 using HeuristicLab.Optimization.Operators.LCS; 26 26 27 27 namespace HeuristicLab.Encodings.DecisionList { … … 31 31 IValueLookupParameter<IntValue> InitialNumberOfRulesParameter { get; } 32 32 IValueLookupParameter<PercentValue> OneProbabilityParameter { get; } 33 IValueLookupParameter<IAction> DefaultActionParameter { get; } 33 34 } 34 35 } -
branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Interfaces/IDecisionListManipulator.cs
r9334 r9342 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Data; 23 24 using HeuristicLab.Optimization; 24 25 … … 26 27 public interface IDecisionListManipulator : IDecisionListOperator, IManipulator { 27 28 ILookupParameter<DecisionList> ChildParameter { get; } 29 ILookupParameter<PercentValue> ActionMutationProbabilityParameter { get; } 28 30 } 29 31 }
Note: See TracChangeset
for help on using the changeset viewer.