source:
stable/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNodeSimilarityComparer.cs
@
12741
Last change on this file since 12741 was 11943, checked in by jkarder, 10 years ago | |
---|---|
File size: 395 bytes |
Rev | Line | |
---|---|---|
[10269] | 1 | using System.Collections.Generic; |
2 | using HeuristicLab.Core; | |
3 | ||
4 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding { | |
5 | public interface ISymbolicExpressionTreeNodeSimilarityComparer : IEqualityComparer<ISymbolicExpressionTreeNode>, IItem { | |
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.