Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/16/16 23:14:01 (8 years ago)
Author:
pkimmesw
Message:

#2665 Expressions are splitted into StatefullExpressions and StatelessExpressions, Added traits for tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.Algorithms.PushGP.Cli/Program.cs

    r14392 r14398  
    1212        static void Main(string[] args)
    1313        {
    14             Stepwise().Wait();
     14            SimpleTest();
     15            //Stepwise().Wait();
    1516            //PerformanceTestInterpreter();
    1617            //PerformanceTestCodeGenerator();
     
    1819            Console.WriteLine("\nPress any key to continue...");
    1920            Console.ReadKey();
     21        }
     22
     23        static void SimpleTest()
     24        {
     25            var interpreter = new PushGPInterpreter();
     26
     27            interpreter.Interpret("5 INTEGER.DUP INTEGER.+");
     28
     29            interpreter.PrintStacks();
    2030        }
    2131
Note: See TracChangeset for help on using the changeset viewer.