[10278] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
[11233] | 22 | using System;
|
---|
[10267] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 |
|
---|
[15771] | 29 | namespace HeuristicLab.Problems.ProgramSynthesis {
|
---|
[10267] | 30 | [StorableClass]
|
---|
| 31 | [Item("GenealogGraphNode", "A class representing a node in the GenealogyGraph")]
|
---|
[11925] | 32 | public class GenealogyGraphNode : Vertex<IDeepCloneable>, IGenealogyGraphNode {
|
---|
[10267] | 33 | [StorableConstructor]
|
---|
| 34 | protected GenealogyGraphNode(bool deserializing) : base(deserializing) { }
|
---|
[11253] | 35 |
|
---|
[10267] | 36 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 37 | return new GenealogyGraphNode(this, cloner);
|
---|
| 38 | }
|
---|
[11253] | 39 |
|
---|
[10267] | 40 | protected GenealogyGraphNode(GenealogyGraphNode original, Cloner cloner)
|
---|
| 41 | : base(original, cloner) {
|
---|
[11253] | 42 | Quality = original.Quality;
|
---|
| 43 | Rank = original.Rank;
|
---|
| 44 | IsElite = original.IsElite;
|
---|
| 45 | Id = Guid.NewGuid().ToString();
|
---|
[10267] | 46 | }
|
---|
| 47 |
|
---|
[11925] | 48 | public GenealogyGraphNode() {
|
---|
[11233] | 49 | Id = Guid.NewGuid().ToString();
|
---|
| 50 | }
|
---|
[10267] | 51 |
|
---|
[11925] | 52 | public GenealogyGraphNode(IDeepCloneable data)
|
---|
| 53 | : this() {
|
---|
| 54 | Data = data;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
[10677] | 57 | public new IEnumerable<IGenealogyGraphArc> InArcs {
|
---|
[11459] | 58 | get { return base.InArcs.Select(x => (IGenealogyGraphArc)x); }
|
---|
[10267] | 59 | }
|
---|
[11253] | 60 |
|
---|
[10677] | 61 | public new IEnumerable<IGenealogyGraphArc> OutArcs {
|
---|
[11459] | 62 | get { return base.OutArcs.Select(x => (IGenealogyGraphArc)x); }
|
---|
[10267] | 63 | }
|
---|
[11253] | 64 |
|
---|
[11750] | 65 | public IEnumerable<IGenealogyGraphNode> Parents {
|
---|
[11858] | 66 | get { return base.InArcs.Select(x => (IGenealogyGraphNode)x.Source); }
|
---|
[11750] | 67 | }
|
---|
[11852] | 68 |
|
---|
[11750] | 69 | public IEnumerable<IGenealogyGraphNode> Children {
|
---|
[11858] | 70 | get { return base.OutArcs.Select(x => (IGenealogyGraphNode)x.Target); }
|
---|
[11750] | 71 | }
|
---|
| 72 |
|
---|
[10677] | 73 | public IEnumerable<IGenealogyGraphNode> Ancestors {
|
---|
| 74 | get {
|
---|
[11750] | 75 | if (!Parents.Any())
|
---|
| 76 | return Enumerable.Empty<IGenealogyGraphNode>();
|
---|
[10677] | 77 | // for performance, we use a hashset for lookup and a list for iteration
|
---|
[11750] | 78 | var nodes = new HashSet<IGenealogyGraphNode>(Parents);
|
---|
[15757] | 79 | var list = new List<IGenealogyGraphNode>(nodes);
|
---|
[10677] | 80 | int i = 0;
|
---|
| 81 | while (i != list.Count) {
|
---|
[15757] | 82 | foreach (var arc in list[i].InArcs) {
|
---|
| 83 | if (nodes.Add(arc.Source))
|
---|
| 84 | list.Add(arc.Source);
|
---|
[10267] | 85 | }
|
---|
[10677] | 86 | ++i;
|
---|
[10267] | 87 | }
|
---|
[10677] | 88 | return list;
|
---|
[10267] | 89 | }
|
---|
| 90 | }
|
---|
[11750] | 91 |
|
---|
[10677] | 92 | public IEnumerable<IGenealogyGraphNode> Descendants {
|
---|
| 93 | get {
|
---|
[11750] | 94 | var nodes = new HashSet<IGenealogyGraphNode>(Children);
|
---|
[15757] | 95 | var list = new List<IGenealogyGraphNode>(nodes);
|
---|
[10677] | 96 | int i = 0;
|
---|
| 97 | while (i != list.Count) {
|
---|
[10267] | 98 | foreach (var e in list[i].OutArcs) {
|
---|
[15757] | 99 | if (nodes.Add(e.Target))
|
---|
| 100 | list.Add(e.Target);
|
---|
[10267] | 101 | }
|
---|
[10677] | 102 | ++i;
|
---|
[10267] | 103 | }
|
---|
[10677] | 104 | return list;
|
---|
[10267] | 105 | }
|
---|
| 106 | }
|
---|
[11750] | 107 |
|
---|
[10267] | 108 | [Storable]
|
---|
[11233] | 109 | public string Id { get; private set; }
|
---|
| 110 |
|
---|
| 111 | [Storable]
|
---|
[10267] | 112 | private double rank;
|
---|
| 113 | public double Rank {
|
---|
| 114 | get { return rank; }
|
---|
| 115 | set { rank = value; }
|
---|
| 116 | }
|
---|
| 117 | [Storable]
|
---|
| 118 | private double quality;
|
---|
| 119 | public double Quality {
|
---|
| 120 | get { return quality; }
|
---|
| 121 | set { quality = value; }
|
---|
| 122 | }
|
---|
| 123 | [Storable]
|
---|
| 124 | private bool isElite;
|
---|
| 125 | public bool IsElite {
|
---|
| 126 | get { return isElite; }
|
---|
| 127 | set { isElite = value; }
|
---|
| 128 | }
|
---|
| 129 | public int CompareTo(IGenealogyGraphNode other) {
|
---|
| 130 | return Quality.CompareTo(other.Quality);
|
---|
| 131 | }
|
---|
| 132 | }
|
---|
| 133 |
|
---|
| 134 | [StorableClass]
|
---|
| 135 | [Item("GenealogyGraphNode", "A genealogy graph node which also has a Content")]
|
---|
[10300] | 136 | public class GenealogyGraphNode<T> : GenealogyGraphNode, IGenealogyGraphNode<T> where T : class, IItem {
|
---|
[11253] | 137 | public new T Data {
|
---|
| 138 | get { return (T)base.Data; }
|
---|
| 139 | set { base.Data = value; }
|
---|
[10300] | 140 | }
|
---|
[10897] | 141 |
|
---|
[11262] | 142 | [StorableConstructor]
|
---|
| 143 | protected GenealogyGraphNode(bool deserializing) : base(deserializing) { }
|
---|
[10897] | 144 |
|
---|
[11253] | 145 | public GenealogyGraphNode(IDeepCloneable content) : base(content) { }
|
---|
| 146 |
|
---|
[10300] | 147 | protected GenealogyGraphNode(GenealogyGraphNode<T> original, Cloner cloner)
|
---|
| 148 | : base(original, cloner) {
|
---|
| 149 | }
|
---|
| 150 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 151 | return new GenealogyGraphNode<T>(this, cloner);
|
---|
| 152 | }
|
---|
[10677] | 153 | public new IEnumerable<IGenealogyGraphNode<T>> Parents {
|
---|
[11459] | 154 | get { return base.Parents.Select(x => (IGenealogyGraphNode<T>)x); }
|
---|
[10677] | 155 | }
|
---|
| 156 | public new IEnumerable<IGenealogyGraphNode<T>> Children {
|
---|
[11459] | 157 | get { return base.Children.Select(x => (IGenealogyGraphNode<T>)x); }
|
---|
[10677] | 158 | }
|
---|
| 159 | public new IEnumerable<IGenealogyGraphNode<T>> Ancestors {
|
---|
[11459] | 160 | get { return base.Ancestors.Select(x => (IGenealogyGraphNode<T>)x); }
|
---|
[10677] | 161 | }
|
---|
| 162 | public new IEnumerable<IGenealogyGraphNode<T>> Descendants {
|
---|
[11459] | 163 | get { return base.Descendants.Select(x => (IGenealogyGraphNode<T>)x); }
|
---|
[10677] | 164 | }
|
---|
[10267] | 165 | }
|
---|
| 166 | }
|
---|