Changeset 10463
- Timestamp:
- 02/19/14 10:30:27 (11 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking
- Files:
-
- 3 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/AncestryLayoutAdapter.cs
r10264 r10463 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 25 using HeuristicLab.Evolution aryTracking.Views.Primitives;25 using HeuristicLab.EvolutionTracking.Views.Primitives; 26 26 using HeuristicLab.Visualization; 27 27 28 namespace HeuristicLab.Evolution aryTracking.Views {28 namespace HeuristicLab.EvolutionTracking.Views { 29 29 class AncestryLayoutAdapter : ILayoutAdapter<PrimitiveGroup> { 30 30 public IEnumerable<ILayoutNode<IGroup>> Convert(IGroup root, Func<PrimitiveGroup, ILayoutNode<PrimitiveGroup>> convertFunc) { -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/Primitives/LabeledEllipse.cs
r10269 r10463 26 26 using HeuristicLab.Visualization; 27 27 28 namespace HeuristicLab.Evolution aryTracking.Views.Primitives {28 namespace HeuristicLab.EvolutionTracking.Views.Primitives { 29 29 public class LabeledEllipse : Ellipse, ILayoutNode<ISymbolicExpressionTreeNode> { 30 30 private string text; -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/Primitives/LabeledRectangle.cs
r10269 r10463 27 27 using Rectangle = HeuristicLab.Visualization.Rectangle; 28 28 29 namespace HeuristicLab.Evolution aryTracking.Views.Primitives {29 namespace HeuristicLab.EvolutionTracking.Views.Primitives { 30 30 public class LabeledRectangle : Rectangle, ILayoutNode<ISymbolicExpressionTreeNode> { 31 31 private string text; -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/Primitives/PrimitiveGroup.cs
r10264 r10463 26 26 using HeuristicLab.Visualization; 27 27 28 namespace HeuristicLab.Evolution aryTracking.Views.Primitives {28 namespace HeuristicLab.EvolutionTracking.Views.Primitives { 29 29 // a class representing a primitive group with an area defined by the LowerLeft and UpperRight points 30 30 // the area is important for deciding which group was selected and for layouting
Note: See TracChangeset
for help on using the changeset viewer.