Free cookie consent management tool by TermsFeed Policy Generator

source: branches/jschiess/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/ISimulatedAnnealingHeatingStrategy.cs @ 14452

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

#1836 SA reheating strategies: First version of continuous reheater and fixed reheater, both reheat based on acceptance of solutions.

File size: 436 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 ISimulatedAnnealingHeatingStrategy : IOperator
12    {
13        void Parameterize();
14
15        bool ShouldReheat(bool currentCoolingState, ItemList<BoolValue> accepts);
16    }
17}
Note: See TracBrowser for help on using the repository browser.