Changeset 9342 for branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Creators
- Timestamp:
- 04/05/13 13:12:54 (12 years ago)
- 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 1 1 *.user 2 Plugin.cs
-
- Property svn:ignore
-
branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Creators/UniformRandomDecisionListCreator.cs
r9334 r9342 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Algorithms.GAssist;24 23 using HeuristicLab.Common; 25 24 using HeuristicLab.Core; 25 using HeuristicLab.Optimization.Operators.LCS; 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 27 … … 50 50 rules.Add(newRule); 51 51 } 52 return new DecisionList(rules); 52 53 return new DecisionList(rules); //, DefaultActionParameter.ActualValue); 53 54 } 54 55 }
Note: See TracChangeset
for help on using the changeset viewer.