Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/08 19:15:29 (16 years ago)
Author:
gkronber
Message:

unified runs and agents (are actually the same with the minor difference that agents can create new agents (runs)) (ticket #188)

File:
1 edited

Legend:

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

    r388 r390  
    6565    }
    6666    private void CreateNewEngines() {
    67       ICollection<AgentEntry> agents = database.GetAgents(ProcessStatus.Waiting);
     67      IEnumerable<AgentEntry> agents = database.GetAgents(ProcessStatus.Waiting).Where(a=>a.ControllerAgent);
    6868      foreach(AgentEntry a in agents) {
    6969        SequentialEngine.SequentialEngine engine = new HeuristicLab.SequentialEngine.SequentialEngine();
Note: See TracChangeset for help on using the changeset viewer.