Last change
on this file since 14547 was
14452,
checked in by jschiess, 8 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 | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Data;
|
---|
3 | using System;
|
---|
4 | using System.Collections.Generic;
|
---|
5 | using System.Linq;
|
---|
6 | using System.Text;
|
---|
7 | using System.Threading.Tasks;
|
---|
8 |
|
---|
9 | namespace 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.