Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PTSP/HeuristicLab.Problems.PTSP/3.3/Interfaces/I25MoveOperator.cs @ 13322

Last change on this file since 13322 was 12272, checked in by apolidur, 10 years ago

#2221: Adding 2.5-opt-EEs operators to PTSP

File size: 363 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Optimization;
3using System;
4using System.Collections.Generic;
5using System.Linq;
6using System.Text;
7using System.Threading.Tasks;
8
9namespace HeuristicLab.Problems.PTSP {
10  public interface I25MoveOperator : IMoveOperator {
11    ILookupParameter<TwoPointFiveMove> TwoPointFiveMoveParameter { get; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.