Last change
on this file since 14777 was
11927,
checked in by bburlacu, 10 years ago
|
#1772: Fixed compilation errors and removed leftover similarity calculators, re-added ISymbolicExpressionTreeNodeSimilarityComparer interface and PhenotypicSimilarityCalculator.
|
File size:
393 bytes
|
Rev | Line | |
---|
[10269] | 1 | using System.Collections.Generic;
|
---|
| 2 | using HeuristicLab.Core;
|
---|
| 3 |
|
---|
| 4 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
[11927] | 5 | public interface ISymbolicExpressionTreeNodeEqualityComparer : IEqualityComparer<ISymbolicExpressionTreeNode>, IItem {
|
---|
[10269] | 6 | bool MatchConstantValues { get; set; }
|
---|
| 7 | bool MatchVariableWeights { get; set; }
|
---|
| 8 | bool MatchVariableNames { get; set; }
|
---|
| 9 | }
|
---|
| 10 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.