Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/17/13 15:15:49 (11 years ago)
Author:
gkronber
Message:

#2026 created a separate plugin for the classes for the GPDL code generation backend. To remove references to HL code from the core compiler code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/GpdlEditor.cs

    r10031 r10049  
    2727using HeuristicLab.MainForm.WindowsForms;
    2828using HeuristicLab.Optimization;
     29using HeuristicLab.Problems.GPDL.CodeGen;
    2930using HeuristicLab.Problems.Instances;
    3031using HeuristicLab.Problems.Instances.Views;
     
    4950        // generate an OSGA to solve the problem
    5051        var osga = new OffspringSelectionGeneticAlgorithm();
    51         osga.Problem = parser.problem;
     52        var problemGenerator = new ProblemGenerator();
     53        osga.Problem = problemGenerator.GenerateFromAst(parser.AbstractSyntaxTree);
    5254        osga.Engine = new SequentialEngine.SequentialEngine();
    5355        osga.PopulationSize.Value = 500;
Note: See TracChangeset for help on using the changeset viewer.