Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2864_PermutationProblems/HeuristicLab.Problems.LinearOrdering/3.3/Interfaces/IMatrixTriangulationEvaluator.cs @ 15521

Last change on this file since 15521 was 15521, checked in by fholzing, 6 years ago

#2864: First commit of new branch of Permutation based benchmark problems.

File size: 641 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Data;
3using HeuristicLab.Encodings.PermutationEncoding;
4using System;
5using System.Collections.Generic;
6using System.Linq;
7using System.Text;
8using System.Threading.Tasks;
9
10namespace HeuristicLab.Problems.LinearOrdering
11{
12    interface IMatrixTriangulationEvaluator : ILOPEvaluator
13    {
14        ILookupParameter<Permutation> PermutationParameter { get; }
15        ILookupParameter<DoubleMatrix> MatrixParameter { get; }
16        ILookupParameter<Permutation> BestKnownSolutionParameter { get; }
17        ILookupParameter<DoubleValue> BestKnownQualityParameter { get; }
18    }
19}
Note: See TracBrowser for help on using the repository browser.