Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/12/17 14:11:43 (7 years ago)
Author:
pkimmesw
Message:

#2665 Fixed bias 0 issue, PushExpressionFrequencyAnalyzer, Fixed probability for ERC settings, Fixed enable/disable instructions, Added expression descriptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Views/DataEditorView.cs

    r14952 r15032  
    188188          var type = Content.InputArgumentTypes[i];
    189189          var offset = inputArgumentCountDict[type];
    190           row.Cells[i].Value = ViewHelper.StringifyInput(type, offset, example, ValueSeparator);
     190          row.Cells[i].Value = ViewHelper.StringifyInput(type, offset, "R", example, ValueSeparator);
    191191          inputArgumentCountDict[type]++;
    192192        }
     
    196196          var type = Content.OutputArgumentTypes[i];
    197197          var offset = outputArgumentCountDict[type];
    198           row.Cells[Content.InputArgumentTypes.Length + i].Value = ViewHelper.StringifyOutput(type, offset, example, ValueSeparator);
     198          row.Cells[Content.InputArgumentTypes.Length + i].Value = ViewHelper.StringifyOutput(type, offset, "R", example, ValueSeparator);
    199199          outputArgumentCountDict[type]++;
    200200        }
Note: See TracChangeset for help on using the changeset viewer.