Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNodeSimilarityComparer.cs @ 14929

Last change on this file since 14929 was 14929, checked in by gkronber, 8 years ago

#2520 fixed unit tests for new persistence: loading & storing all samples

File size: 486 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Core;
3using HeuristicLab.Persistence;
4
5namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
6  [StorableType("c11389e3-4a11-41b4-9143-701d0f53e446")]
7  public interface ISymbolicExpressionTreeNodeSimilarityComparer : IEqualityComparer<ISymbolicExpressionTreeNode>, IItem {
8    bool MatchConstantValues { get; set; }
9    bool MatchVariableWeights { get; set; }
10    bool MatchVariableNames { get; set; }
11  }
12}
Note: See TracBrowser for help on using the repository browser.