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 | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HeuristicLab.Persistence;
|
---|
4 |
|
---|
5 | namespace 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.