Changeset 13826 for trunk/sources
- Timestamp:
- 05/03/16 15:57:00 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/DataAnalysisSolution.cs
r12012 r13826 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 111 111 protected override void DeregisterItemEvents(IEnumerable<IResult> items) { } 112 112 113 public virtual IEnumerable<string> GetUsedVariablesForPrediction() { 114 return this.ProblemData.AllowedInputVariables; 115 } 116 113 117 #region INamedItem Members 114 118 [Storable] -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisSolution.cs
r12012 r13826 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System; 23 using System.Collections.Generic; 23 24 using HeuristicLab.Common; 24 25 using HeuristicLab.Core; … … 28 29 IDataAnalysisModel Model { get; } 29 30 IDataAnalysisProblemData ProblemData { get; set; } 31 IEnumerable<string> GetUsedVariablesForPrediction(); 30 32 31 33 event EventHandler ModelChanged;
Note: See TracChangeset
for help on using the changeset viewer.