Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/14 00:03:36 (10 years ago)
Author:
bburlacu
Message:

#1772: Fixed another minor display bug concerning elite individuals. Fixed bug when saving fragments from mutation. Displayed quality as well in the SymbolicExpressionTreeTile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Tracking/SymbolicDataAnalysisExpressionBeforeCrossoverOperator.cs

    r10755 r10833  
    2020#endregion
    2121
    22 using System;
    2322using System.Linq;
    2423using HeuristicLab.Core;
     
    3534
    3635      for (int i = 0; i < parents.Count; ++i) {
    37         var nodes = parents[i].IterateNodesPrefix().ToList();
    38         arcs[i].Data = nodes;
     36        arcs[i].Data = parents[i].IterateNodesPrefix().ToList();
    3937      }
    40       var parentVertices = childVertex.Parents.ToList();
    41       if (parents[0].Length != parentVertices[0].Content.Length || parents[1].Length != parentVertices[1].Content.Length) {
    42         throw new Exception("Inconsistency detected in GenealogyGraph.");
    43       }
     38
     39      //      var parentVertices = childVertex.Parents.ToList();
     40      //
     41      //      if (parents[0].Length != parentVertices[0].Content.Length || parents[1].Length != parentVertices[1].Content.Length) {
     42      //        throw new Exception("Inconsistency detected in GenealogyGraph.");
     43      //      }
    4444
    4545      return result;
Note: See TracChangeset for help on using the changeset viewer.