Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 16559 was 16559, checked in by jkarder, 5 years ago

#2520: renamed Fossil to Attic and set version to 1.0.0-pre01

File size: 472 bytes
RevLine 
[10269]1using System.Collections.Generic;
2using HeuristicLab.Core;
[16559]3using HEAL.Attic;
[10269]4
5namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
[16474]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.