Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceOverhaul/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNodeSimilarityComparer.cs

Last change on this file was 14712, checked in by gkronber, 7 years ago

#2520 added GUIDs for (almost) all interface types (probably still too many) also added newlines at end of all files

File size: 518 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Core;
3
4namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
5  [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("EAF8B7DF-604C-4D88-8145-9C37897CD75F")]
6  public interface ISymbolicExpressionTreeNodeSimilarityComparer : IEqualityComparer<ISymbolicExpressionTreeNode>, IItem {
7    bool MatchConstantValues { get; set; }
8    bool MatchVariableWeights { get; set; }
9    bool MatchVariableNames { get; set; }
10  }
11}
Note: See TracBrowser for help on using the repository browser.