Last change
on this file since 13090 was
10471,
checked in by bburlacu, 11 years ago
|
#2076: Thanks for the feedback:
- I removed the ILayoutNode Interfaces
- Fixed the error that was causing it to crash in the textual representation
- The ancestor is a node on the path between the root and the current node (from the paper), but in the algorithm it's assigned differently
- Parent is the immediate parent
I also increased the node label text size a bit and did some cosmetic improvements.
|
File size:
269 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
5 | public interface ILayoutAdapter<T> where T : class {
|
---|
6 | IEnumerable<LayoutNode<T>> Convert(T root, Func<T, LayoutNode<T>> convertFunc);
|
---|
7 | }
|
---|
8 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.