Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNodeSimilarityComparer.cs @ 11943

Last change on this file since 11943 was 11943, checked in by jkarder, 9 years ago

#2164: merged r10562, r10563, r11384 and r11392 into stable

File size: 395 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Core;
3
4namespace 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.