Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/17/20 15:13:17 (5 years ago)
Author:
dpiringe
Message:

#3026:

  • fixed a bug in HeuristicLab.JsonInterface.App -> now the Runner checks if the instantiated optimizer is an EngineAlgorithm, if true: Engine = SequentialEngine (engine can be configured in later versions)
  • added a TabControl in ExportJsonDialog for parameters and results
  • updated parameter tree view with checkboxes (and linked them with VM)
  • renamed ActivatedResults to Results for templates
  • fixed a bug with injection of operators in MultiCheckedOperatorConverter -> now operators of an ValueParameter get set correctly
  • updated MultiCheckedOperatorConverter to extract/inject parameters of operators
  • fixed bug with path for template -> removed usage of method Path.GetDirectoryName, returned wrong results
  • splitted cache for JsonItemConverter into a cache for injection and extraction
  • JsonTemplateInstantiator now uses first item in objects array instead of searching for an object with template name
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/Heuristiclab.ConfigStarter/Program.cs

    r17436 r17439  
    4646
    4747      JCGenerator generator = new JCGenerator();
    48       generator.GenerateTemplate(@"C:\Workspace\Template.json", alg);
    49       JsonTemplateInstantiator.Instantiate(@"C:\Workspace\Template.json");
    50       /*
     48      generator.GenerateTemplate(@"C:\Workspace", "Template", alg);
     49      //JsonTemplateInstantiator.Instantiate(@"C:\Workspace\Template.json");
     50     
    5151      List<ICommandLineArgument> arguments = new List<ICommandLineArgument>();
    5252      arguments.Add(new StartArgument("JsonInterface"));
     
    5555
    5656      app.Run(arguments.ToArray());
    57       */
     57     
    5858    }
    5959  }
Note: See TracChangeset for help on using the changeset viewer.