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/IntegerExpressionTests.cs

    r15017 r15771  
    1 namespace HeuristicLab.Tests.Interpreter.Expressions {
    2   using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
    3   using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;
    4 
    5   using Microsoft.VisualStudio.TestTools.UnitTesting;
    6 
     1using HeuristicLab.Problems.ProgramSynthesis;
     2using Microsoft.VisualStudio.TestTools.UnitTesting;
     3
     4namespace HeuristicLab.Tests.Interpreter.Expressions {
    75  [TestClass]
    86  public class IntegerExpressionTests : CommonTests<long> {
    9     protected override string TypeName
    10     {
    11       get
    12       {
     7    protected override string TypeName {
     8      get {
    139        return "INTEGER";
    1410      }
    1511    }
    1612
    17     protected override IPushStack<long> Stack
    18     {
    19       get
    20       {
     13    protected override IPushStack<long> Stack {
     14      get {
    2115        return interpreter.IntegerStack;
    2216      }
Note: See TracChangeset for help on using the changeset viewer.