Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/24/14 16:59:22 (10 years ago)
Author:
bburlacu
Message:

#1772: Added new SymbolicDataAnalysisGenealogyView and added support for the tracing of building blocks (finding the constituent ancestral elements of a selected subtree).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Fragment.cs

    r10501 r10650  
    88  public class Fragment : Item, IFragment {
    99    [Storable]
    10     public int NewPos { get; set; }
     10    public int Index { get; set; }
    1111
    1212    [Storable]
    13     public int OldPos { get; set; }
     13    public int OldIndex { get; set; }
    1414
    1515    [Storable]
     
    2323      : base(original, cloner) {
    2424      Root = original.Root;
    25       NewPos = original.NewPos;
    26       OldPos = original.OldPos;
     25      Index = original.Index;
     26      OldIndex = original.OldIndex;
    2727    }
    2828    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.