Changeset 15771 for branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis/GenealogyGraph/Interfaces
- Timestamp:
- 02/13/18 16:56:35 (7 years ago)
- Location:
- branches/2895_PushGP_GenealogyAnalysis
- Files:
-
- 2 added
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis/GenealogyGraph/Interfaces/IGenealogyGraph.cs
r11752 r15771 23 23 using HeuristicLab.Core; 24 24 25 namespace HeuristicLab. EvolutionTracking{25 namespace HeuristicLab.Problems.ProgramSynthesis { 26 26 public interface IGenealogyGraph : IDirectedGraph { 27 27 IEnumerable<IGenealogyGraphNode> GetByRank(double rank); -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis/GenealogyGraph/Interfaces/IGenealogyGraphArc.cs
r11925 r15771 23 23 using HeuristicLab.Core; 24 24 25 namespace HeuristicLab. EvolutionTracking{25 namespace HeuristicLab.Problems.ProgramSynthesis { 26 26 public interface IGenealogyGraphArc : IArc<IDeepCloneable> { 27 27 new IGenealogyGraphNode Source { get; } -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis/GenealogyGraph/Interfaces/IGenealogyGraphNode.cs
r11925 r15771 25 25 using HeuristicLab.Core; 26 26 27 namespace HeuristicLab. EvolutionTracking{27 namespace HeuristicLab.Problems.ProgramSynthesis { 28 28 public interface IGenealogyGraphNode : IVertex<IDeepCloneable>, IComparable<IGenealogyGraphNode> { 29 29 double Rank { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.