Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/08/09 12:48:18 (16 years ago)
Author:
gkronber
Message:

Merged change sets from CEDMA branch to trunk:

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/Execution.cs

    r1060 r1287  
    5353    }
    5454
    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 {
    6357      get { return targetVariable; }
    6458      set { targetVariable = value; }
    6559    }
    6660
    67     public Execution(Entity dataSetEntity, IEngine engine, int targetVariable) {
    68       this.dataSetEntity = dataSetEntity;
     61    private string description;
     62    public string Description {
     63      get { return description; }
     64      set { description = value; }
     65    }
     66
     67    public Execution(IEngine engine) {
    6968      this.engine = engine;
    70       this.targetVariable = targetVariable;
    7169    }
    7270  }
Note: See TracChangeset for help on using the changeset viewer.