Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/13/18 16:56:35 (6 years ago)
Author:
bburlacu
Message:

#2895: Add solution skeleton for PushGP with genealogy analysis.

Location:
branches/2895_PushGP_GenealogyAnalysis
Files:
1 added
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Tests/Interpreter/Expressions/CodeExpressionTests.cs

    r15017 r15771  
    1 namespace HeuristicLab.Tests.Interpreter.Expressions {
    2   using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
    3   using HeuristicLab.Problems.ProgramSynthesis.Push.Parser;
    4   using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;
    5   using Microsoft.VisualStudio.TestTools.UnitTesting;
    6 
     1using Microsoft.VisualStudio.TestTools.UnitTesting;
     2using HeuristicLab.Problems.ProgramSynthesis;
     3
     4namespace HeuristicLab.Tests.Interpreter.Expressions {
    75
    86  [TestClass]
    97  public class CodeExpressionTests : CommonTests<Expression> {
    10     protected override string TypeName
    11     {
    12       get
    13       {
     8    protected override string TypeName {
     9      get {
    1410        return "CODE";
    1511      }
    1612    }
    1713
    18     protected override IPushStack<Expression> Stack
    19     {
    20       get
    21       {
     14    protected override IPushStack<Expression> Stack {
     15      get {
    2216        return interpreter.CodeStack;
    2317      }
Note: See TracChangeset for help on using the changeset viewer.