Changeset 9411 for branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Interfaces
- Timestamp:
- 04/30/13 16:54:43 (12 years ago)
- Location:
- branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Interfaces/IDecisionListClassificationProblemData.cs
r9392 r9411 24 24 25 25 namespace HeuristicLab.Encodings.DecisionList { 26 public interface IDecisionListClassificationProblemData : IGAssist NichesProblemData {26 public interface IDecisionListClassificationProblemData : IGAssistProblemData { 27 27 IValueParameter<Rule> SampleRuleParameter { get; } 28 28 } -
branches/LearningClassifierSystems/HeuristicLab.Encodings.DecisionList/3.3/Interfaces/IDecisionListSolution.cs
r9392 r9411 25 25 namespace HeuristicLab.Encodings.DecisionList { 26 26 public interface IDecisionListSolution : IGAssistSolution { 27 DecisionList Model { get; } 28 //IDecisionListClassificationProblemData ProblemData { get; set; } 27 new DecisionList Model { get; } 29 28 30 29 event EventHandler ModelChanged;
Note: See TracChangeset
for help on using the changeset viewer.