Free cookie consent management tool by TermsFeed Policy Generator

source: branches/jschiess/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/IReheatingOperator.cs @ 14555

Last change on this file since 14555 was 14555, checked in by jschiess, 7 years ago

#1836 SA reheating strategies: Refactoring, Added Connolly Reheater Operator

File size: 335 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Data;
3using System;
4using System.Collections.Generic;
5using System.Linq;
6using System.Text;
7using System.Threading.Tasks;
8
9namespace HeuristicLab.Algorithms.SimulatedAnnealing
10{
11    public interface IReheatingOperator : IOperator
12    {
13        void Parameterize();
14    }
15}
Note: See TracBrowser for help on using the repository browser.