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/3.3/OrchestrationMessage.cs

    r14601 r14610  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525  [Flags]
    2626  public enum OrchestrationMessage {
    27     Unknown = 0x0,
    28     Prepare = 0x1,
    29     Start = 0x2,
    30     Pause = 0x4,
    31     Stop = 0x8,
    32     QualityAdaption = 0x100,
     27    Unknown = 0,
     28    Prepare = 1,
     29    Start = 1 << 1,       // 2
     30    Pause = 1 << 2,       // 4
     31    Stop = 1 << 3,        // 8
     32    SetEvalHook = 1 << 8, // 256
     33    ClearRuns = 1 << 9,   // 512
    3334  }
    3435}
Note: See TracChangeset for help on using the changeset viewer.