Changeset 1214
- Timestamp:
- 02/11/09 13:28:01 (16 years ago)
- Location:
- branches/CEDMA-Refactoring-Ticket419
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/Problem.cs
r1043 r1214 52 52 public HeuristicLab.DataAnalysis.Dataset DataSet { 53 53 get { return dataset; } 54 } 55 56 public string[] VariableNames { 57 get { return DataSet.VariableNames; } 54 58 } 55 59 -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Server/Execution.cs
r1060 r1214 53 53 } 54 54 55 //private Problem problem; 56 //public Problem Problem { 57 // get { return problem; } 58 // set { problem = value; } 59 //} 60 61 private int targetVariable; 62 public int TargetVariable { 55 private string targetVariable; 56 public string TargetVariable { 63 57 get { return targetVariable; } 64 58 set { targetVariable = value; } 65 59 } 66 60 67 public Execution(Entity dataSetEntity, IEngine engine, inttargetVariable) {61 public Execution(Entity dataSetEntity, IEngine engine, string targetVariable) { 68 62 this.dataSetEntity = dataSetEntity; 69 63 this.engine = engine;
Note: See TracChangeset
for help on using the changeset viewer.