Last change
on this file since 10453 was
10269,
checked in by bburlacu, 11 years ago
|
#1772: Added HeuristicLab.Problems.DataAnalysis.Symbolic and HeuristicLab.Problems.DataAnalysis.Symbolic.Views and integrated some modifications from the old branch.
|
File size:
271 bytes
|
Rev | Line | |
---|
[10269] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 |
|
---|
| 4 | namespace 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.