Changeset 15289 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views/PushDebuggerView.cs
- Timestamp:
- 07/26/17 19:34:13 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
-
Property
svn:ignore
set to
*.user
-
Property
svn:ignore
set to
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views/PushDebuggerView.cs
r15273 r15289 9 9 using Core.Views; 10 10 using Expressions; 11 12 using HeuristicLab.Problems.ProgramSynthesis.Push.Solution; 13 11 14 using Interpreter; 12 15 using MainForm; 13 using Problem;14 16 using Stack; 15 17 … … 227 229 228 230 // 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) { 232 233 list.DrawMode = DrawMode.OwnerDrawFixed; 233 234 list.DrawItem += (sender, e) => {
Note: See TracChangeset
for help on using the changeset viewer.