Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionaryTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ILayoutAdapter.cs @ 9963

Last change on this file since 9963 was 9963, checked in by bburlacu, 11 years ago

#1772: Merged changes from the trunk and other branches. Added new ExtendedSymbolicExpressionTreeCanvas control for the visual exploration of tree genealogies. Reorganized some files and folders.

File size: 271 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
5  public interface ILayoutAdapter<T> where T : class {
6    IEnumerable<ILayoutNode<T>> Convert(T root, Func<T, ILayoutNode<T>> convertFunc);
7  }
8}
Note: See TracBrowser for help on using the repository browser.