Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/26/17 14:12:39 (8 years ago)
Author:
jkarder
Message:

#2205: worked on optimization networks

  • added abstract base classes for ttp networks/orchestrators
  • removed ttp networks/orchestrators from HeuristicLab.Networks.IntegratedOptimization
  • runs can now be cleared when preparing OrchestratedAlgorithmNodes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Networks.IntegratedOptimization.LocationRouting/3.3/LrpNetwork1.cs

    r14604 r14610  
    130130    public TimeSpan ExecutionTime { get { return MetaSolver.Algorithm.ExecutionTime; } }
    131131
    132     public void Prepare(bool clearRuns) { Prepare(); }
    133     public void Prepare() { Orchestrator.Prepare(); }
    134     public void Start() {
    135       if (MetaSolver.Algorithm.ExecutionState == ExecutionState.Prepared)
    136         Orchestrator.Prepare();
    137       Orchestrator.StartAsync();
    138     }
     132    public void Prepare() { Prepare(false); }
     133    public void Prepare(bool clearRuns) { Orchestrator.Prepare(clearRuns); }
     134    public void Start() { Orchestrator.StartAsync(); }
    139135    public void Pause() { Orchestrator.Pause(); }
    140136    public void Stop() { Orchestrator.Stop(); }
Note: See TracChangeset for help on using the changeset viewer.