Last change
on this file since 9246 was
8557,
checked in by bburlacu, 12 years ago
|
#1772: Introduced base class and interface for tracing operators. Introduced SymbolicExpressionTreeNodeComparer interface to be implemented by node matching operators. Fixed bug in the TracingSymbolicExpressionTreeManipulator where nodes modified by the Full- and OnePoint tree shakers were not correctly detected. The SymbolicExpressionTreeNodeSimilarityComparer is now injected in the tracing genetic operators as a parameter.
|
File size:
255 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
5 | public interface ISymbolicExpressionTreeNodeComparer : IEqualityComparer<ISymbolicExpressionTreeNode>, IItem {
|
---|
6 |
|
---|
7 | }
|
---|
8 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.