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

    r14908 r15771  
    1 namespace HeuristicLab.Tests.Interpreter.Expressions {
    2   using System;
    3 
    4   using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
    5   using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;
    6 
    7   using Microsoft.VisualStudio.TestTools.UnitTesting;
    8 
     1using System;
     2using HeuristicLab.Problems.ProgramSynthesis;
     3using Microsoft.VisualStudio.TestTools.UnitTesting;
     4
     5namespace HeuristicLab.Tests.Interpreter.Expressions {
    96  [TestClass]
    107  public class FloatExpressionTests : CommonTests<double> {
    118    private const double delta = 0.00001;
    129
    13     protected override string TypeName
    14     {
    15       get
    16       {
     10    protected override string TypeName {
     11      get {
    1712        return "FLOAT";
    1813      }
    1914    }
    2015
    21     protected override IPushStack<double> Stack
    22     {
    23       get
    24       {
     16    protected override IPushStack<double> Stack {
     17      get {
    2518        return interpreter.FloatStack;
    2619      }
Note: See TracChangeset for help on using the changeset viewer.