Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/07/09 16:50:07 (15 years ago)
Author:
gkronber
Message:
  • Reimplemented method to read a list of already executed algorithms and configurations from the results DB
  • Fixed a bug in the GridExecuter
  • Added a button in the dispatcher view to speed up configuration of input variables

#712

File:
1 edited

Legend:

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

    r2223 r2258  
    3838  public abstract class DispatcherBase : IDispatcher {
    3939    private IModelingDatabase database;
     40    public IModelingDatabase Database {
     41      get {
     42        return database;
     43      }
     44    }
    4045    private List<int> allowedTargetVariables;
    4146    private Dictionary<int, List<int>> activeInputVariables;
    4247    private Problem problem;
     48    public Problem Problem {
     49      get {
     50        return problem;
     51      }
     52    }
    4353    internal event EventHandler Changed;
    4454    private object locker = new object();
Note: See TracChangeset for help on using the changeset viewer.