Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file was 17097, checked in by mkommend, 5 years ago

#2520: Merged 16565 - 16579 into stable.

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