Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/10/17 00:27:31 (7 years ago)
Author:
pkimmesw
Message:

#2665 LexicaseSelector, Performance improvements, UI Fixes, Debugger only shows used stacks, fixed Debugger stepping, Added vector expressions, ERCOptions,

File:
1 edited

Legend:

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

    r14777 r14834  
    2121      });
    2222
    23       interpreter.RunAsync(code, true).Wait();
     23      Console.WriteLine(@"Press ESC to cancel, SPACE to resume, Any other key to step...");
     24      interpreter.Run(code, true);
    2425
    2526      while (!interpreter.IsCompleted) {
     
    3132        if (input.Key == ConsoleKey.Escape) {
    3233          break;
    33         } else if (input.Key == ConsoleKey.Spacebar) {
     34        }
     35
     36        if (input.Key == ConsoleKey.Spacebar) {
    3437          await interpreter.ResumeAsync();
    3538        }
Note: See TracChangeset for help on using the changeset viewer.