Changeset 17607 for branches/3073_IA_constraint_splitting/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces
- Timestamp:
- 06/18/20 11:35:45 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3073_IA_constraint_splitting/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionProblemData.cs
r17579 r17607 1 1 #region License Information 2 2 3 /* HeuristicLab 3 4 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 18 19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 20 */ 21 20 22 #endregion 21 23 … … 28 30 string TargetVariable { get; set; } 29 31 30 IntervalCollection VariableRanges { get;} 32 IntervalCollection VariableRanges { get; } 33 ProblemDataConstraint IntervalConstraints { get; } 31 34 32 IEnumerable<double> TargetVariableValues { get; }35 IEnumerable<double> TargetVariableValues { get; } 33 36 IEnumerable<double> TargetVariableTrainingValues { get; } 34 IEnumerable<double> TargetVariableTestValues { get; }37 IEnumerable<double> TargetVariableTestValues { get; } 35 38 } 36 39 }
Note: See TracChangeset
for help on using the changeset viewer.