Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/17 19:34:13 (7 years ago)
Author:
pkimmesw
Message:

#2665 Fixed analyzer, fixed Plush encoding + operators, adpated print evaluation according to McPhee

Location:
branches/PushGP/HeuristicLab.PushGP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP

    • Property svn:ignore set to
      *.user
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views/PushDebuggerView.cs

    r15273 r15289  
    99  using Core.Views;
    1010  using Expressions;
     11
     12  using HeuristicLab.Problems.ProgramSynthesis.Push.Solution;
     13
    1114  using Interpreter;
    1215  using MainForm;
    13   using Problem;
    1416  using Stack;
    1517
     
    227229
    228230      // align numbers right
    229       var stackEntryType = type.GetStackEntryType();
    230       if (stackEntryType == typeof(double) ||
    231           stackEntryType == typeof(long)) {
     231      if (type == StackTypes.Integer ||
     232          type == StackTypes.Float) {
    232233        list.DrawMode = DrawMode.OwnerDrawFixed;
    233234        list.DrawItem += (sender, e) => {
Note: See TracChangeset for help on using the changeset viewer.