Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/01/17 09:28:34 (7 years ago)
Author:
pkimmesw
Message:

#2665 Fixed Benchmark Problem Definition, Converted LoopExpressions to stateless expressions, Added several unit test to ensure funcionality, Fixed UI bugs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Tests/Interpreter/ExpressionTest.cs

    r14908 r15017  
    11namespace HeuristicLab.Tests.Interpreter {
    2   using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
    3   using HeuristicLab.Problems.ProgramSynthesis.Push.Interpreter;
     2  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Boolean;
     3  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Float;
     4  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.FloatVector;
     5  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.IntegerVector;
     6  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.StringVector;
    47
    58  using Microsoft.VisualStudio.TestTools.UnitTesting;
     9  using Problems.ProgramSynthesis.Base.Erc;
     10  using Problems.ProgramSynthesis.Base.Erc.Char;
     11  using Problems.ProgramSynthesis.Base.Erc.Integer;
     12  using Problems.ProgramSynthesis.Base.Erc.String;
     13  using Problems.ProgramSynthesis.Push.Configuration;
     14  using Problems.ProgramSynthesis.Push.Interpreter;
    615
    716  public class ExpressionTest {
    817    protected PushInterpreter interpreter;
    918
    10     protected PushConfiguration configuration = new PushConfiguration { TopLevelPushCode = false };
     19    protected PushConfiguration configuration = new PushConfiguration {
     20      TopLevelPushCode = false,
     21      ErcOptions = new ErcOptions {
     22        ErcProbability = 0.05,
     23        CharErcOptions = new CharErcOptions(new IntegerRangeErc(0x20, 0x7e)),
     24        StringErcOptions = new StringErcOptions(new StringRandomErc {
     25          IsEnabled = true,
     26          AllowDigits = true,
     27          NewStringProbability = 1,
     28          AllowLowercaseLetters = true,
     29          AllowUppercaseLetters = true
     30        }),
     31        IntegerErcOptions = new IntegerErcOptions(new IntegerRangeErc(-10000, 10000)),
     32        FloatErcOptions = new FloatErcOptions(new FloatRangeErc(-10000, 10000)),
     33        BooleanErcOptions = new BooleanErcOptions(new BooleanRandomErc(true, true, true)),
     34        StringVectorErcOptions = new StringVectorErcOptions(
     35          new StringVectorConstantsErc(new[] { "test", "123", "asdf", "a", "b" })),
     36        IntegerVectorErcOptions = new IntegerVectorErcOptions(
     37          new IntegerVectorConstantsErc(new[] { 0, -5, 10, 8, -3 })),
     38        FloatVectorErcOptions = new FloatVectorErcOptions(
     39          new FloatVectorConstantsErc(new[] { 0.0, -5.2, 10.3, 8.1, -3.4 }))
     40      }
     41    };
    1142
    1243    [TestInitialize]
    1344    public void BeforeTest() {
    14       interpreter = new PushInterpreter(configuration);
     45      interpreter = new PushInterpreter(1337, configuration);
    1546    }
    1647
     
    2152      int? booleanStack = 0,
    2253      int? floatStack = 0,
    23       int? integerStack = 0) {
     54      int? integerStack = 0,
     55      int? charStack = 0,
     56      int? stringStack = 0,
     57      int? integerVectorStack = 0,
     58      int? floatVectorStack = 0,
     59      int? booleanVectorStack = 0,
     60      int? stringVectorStack = 0) {
    2461      if (execStack.HasValue) Assert.AreEqual(execStack, interpreter.ExecStack.Count);
    25 
    2662      if (codeStack.HasValue) Assert.AreEqual(codeStack, interpreter.CodeStack.Count);
    27 
    2863      if (nameStack.HasValue) Assert.AreEqual(nameStack, interpreter.NameStack.Count);
    29 
    3064      if (booleanStack.HasValue) Assert.AreEqual(booleanStack, interpreter.BooleanStack.Count);
    31 
    3265      if (floatStack.HasValue) Assert.AreEqual(floatStack, interpreter.FloatStack.Count);
    33 
    3466      if (integerStack.HasValue) Assert.AreEqual(integerStack, interpreter.IntegerStack.Count);
     67      if (charStack.HasValue) Assert.AreEqual(charStack, interpreter.CharStack.Count);
     68      if (stringStack.HasValue) Assert.AreEqual(stringStack, interpreter.StringStack.Count);
     69      if (integerVectorStack.HasValue) Assert.AreEqual(integerVectorStack, interpreter.IntegerVectorStack.Count);
     70      if (floatVectorStack.HasValue) Assert.AreEqual(floatVectorStack, interpreter.FloatVectorStack.Count);
     71      if (booleanVectorStack.HasValue) Assert.AreEqual(booleanVectorStack, interpreter.BooleanVectorStack.Count);
     72      if (stringVectorStack.HasValue) Assert.AreEqual(stringVectorStack, interpreter.StringVectorStack.Count);
    3573    }
    3674  }
Note: See TracChangeset for help on using the changeset viewer.