Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/21/14 18:20:47 (10 years ago)
Author:
bburlacu
Message:

#1772: Merged trunk changes and added missing frame files (for HeuristicLab.EvolutionTracking and HeuristicLab.EvolutionTracking.Views.

Location:
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4
Files:
1 added
1 edited

Legend:

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

    r10347 r10501  
    55namespace HeuristicLab.EvolutionTracking {
    66  [StorableClass]
    7   [Item("Fragment", "An object that stores a ")]
     7  [Item("Fragment", "A fragment is an object that represents a piece of genetic information that was transferred from parent to child.")]
    88  public class Fragment : Item, IFragment {
    99    [Storable]
    10     private int newPos;
    11     public int NewPos { get { return newPos; } set { newPos = value; } }
     10    public int NewPos { get; set; }
    1211
    1312    [Storable]
    14     private int oldPos;
    15     public int OldPos { get { return oldPos; } set { oldPos = value; } }
     13    public int OldPos { get; set; }
    1614
    1715    [Storable]
Note: See TracChangeset for help on using the changeset viewer.