Changeset 9154 for branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3/Interfaces
- Timestamp:
- 01/14/13 15:23:17 (12 years ago)
- Location:
- branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3/Interfaces
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3/Interfaces/IConditionActionProblemData.cs
r9089 r9154 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 23 24 using HeuristicLab.Core; … … 32 33 IEnumerable<string> AllowedConditionVariables { get; } 33 34 IEnumerable<string> AllowedActionVariables { get; } 35 36 IntValue Length { get; } 37 IntValue ActionLength { get; } 38 IntMatrix Bounds { get; } 39 40 IClassifier FetchClassifier(int rowNumber); 41 42 event EventHandler Changed; 34 43 } 35 44 }
Note: See TracChangeset
for help on using the changeset viewer.