- Timestamp:
- 01/26/14 03:59:12 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SlidingWindow/SlidingWindowBestSolutionsCollection.cs
r10396 r10398 29 29 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 30 30 [StorableClass] 31 [Item(" ", "")]31 [Item("SlidingWindowBestSolutionsCollection", "An object holding a collection of the best sliding window solutions.")] 32 32 public abstract class SlidingWindowBestSolutionsCollection : Item { 33 33 [Storable] … … 42 42 get { return slidingWindowPositions; } 43 43 } 44 public IDataAnalysisProblemData ProblemData { get; set; } 45 public ISymbolicDataAnalysisExpressionTreeInterpreter Interpreter { get; set; } 44 45 [Storable] 46 private IDataAnalysisProblemData problemData; 47 public IDataAnalysisProblemData ProblemData { 48 get { return problemData; } 49 set { problemData = value; } 50 } 51 52 [Storable] 53 private ISymbolicDataAnalysisExpressionTreeInterpreter interpreter; 54 public ISymbolicDataAnalysisExpressionTreeInterpreter Interpreter { 55 get { return interpreter; } 56 set { interpreter = value; } 57 } 46 58 47 59 protected SlidingWindowBestSolutionsCollection(SlidingWindowBestSolutionsCollection original, Cloner cloner) 48 60 : base(original, cloner) { 61 this.bestSolutions = original.BestSolutions; 62 this.slidingWindowPositions = original.SlidingWindowPositions; 63 this.ProblemData = original.ProblemData; 64 this.Interpreter = original.Interpreter; 49 65 } 50 66 protected SlidingWindowBestSolutionsCollection() {
Note: See TracChangeset
for help on using the changeset viewer.