Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNodeSimilarityComparer.cs @ 16474

Last change on this file since 16474 was 16474, checked in by gkronber, 5 years ago

#2520: checked and added StorableType attribute in projects up to HeuristicLab.MainForm

File size: 473 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Core;
3using HEAL.Fossil;
4
5namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
6  [StorableType("c4de8ab2-616d-4c73-9f9c-59545ac38199")]
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.