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/3.4/Parser.cs

    r9872 r10049  
    2828  int errDist = minErrDist;
    2929
    30 public HeuristicLab.Optimization.ISingleObjectiveHeuristicOptimizationProblem problem;
    31  
     30public GPDefNode AbstractSyntaxTree { get; private set; }
     31
    3232
    3333
     
    107107    FitnessFunctionNode fitnessFunNode = null;
    108108    TerminalNode tNode = null;
    109     problem = null;
    110109    string src = "";
    111110   
     
    181180    Expect(12);
    182181    Expect(1);
    183     var gen = new ProblemGenerator();
    184     problem = gen.GenerateFromAst(gpDef);
     182    AbstractSyntaxTree = gpDef;
    185183   
    186184    Expect(13);
Note: See TracChangeset for help on using the changeset viewer.