Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/27/21 17:27:45 (3 years ago)
Author:
swagner
Message:

#3026: Added solutions for headless HeuristicLab

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab/3.3/Program.cs

    r17180 r18035  
    2626    [STAThread]
    2727    static void Main(string[] args) {
    28       HeuristicLab.PluginInfrastructure.Main.Run(args);
     28      if ((args.Length >= 1) && (args[0] == "/start:JsonInterface")) {
     29        HeuristicLab.PluginInfrastructure.Main.HeadlessRun(args);
     30      } else {
     31        HeuristicLab.PluginInfrastructure.Main.Run(args);
     32      }
    2933    }
    3034  }
Note: See TracChangeset for help on using the changeset viewer.