Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using HEAL.Attic;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
7 | [StorableType("C94A360D-5A9F-48A3-A6D3-CF920C77E50D")]
|
---|
8 | public interface IBoundsEstimator : INamedItem, IStatefulItem {
|
---|
9 | Interval GetModelBound(ISymbolicExpressionTree tree, IntervalCollection variableRanges);
|
---|
10 |
|
---|
11 | IDictionary<ISymbolicExpressionTreeNode, Interval> GetModelNodeBounds(
|
---|
12 | ISymbolicExpressionTree tree, IntervalCollection variableRanges);
|
---|
13 |
|
---|
14 | // returns the size of the violation which is the distance to one of the bounds
|
---|
15 | double GetConstraintViolation(
|
---|
16 | ISymbolicExpressionTree tree, IntervalCollection variableRanges, ShapeConstraint constraint);
|
---|
17 |
|
---|
18 | bool IsCompatible(ISymbolicExpressionTree tree);
|
---|
19 |
|
---|
20 | int EvaluatedSolutions { get; set; }
|
---|
21 | }
|
---|
22 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.