summaryrefslogtreecommitdiff
path: root/casa/annealing/AnnealingFilter.H
blob: f787ae43ad242909a621d06bf6b9b18fc1f7a520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Copyright 2008, 2009 Brady J. Garvin

// This file is part of Covering Arrays by Simulated Annealing (CASA).

// CASA is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// CASA is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with CASA.  If not, see <http://www.gnu.org/licenses/>.


#ifndef ANNEALING_FILTER_H
#define ANNEALING_FILTER_H

#include <cassert>
#include <iostream>

#include "search/GreedyFilter.H"
#include "events/Listener.H"

// Decides, according to the rules of simulated annealing, when to take good
// moves and when to take bad ones.

// Should be added as a listener to search iterations in order that cooling be
// synchronized with the search.

template<class STATE, class COST>class AnnealingFilter :
  public GreedyFilter<STATE,COST>,
  public Listener<SearchIteration> {

  typedef Heuristic<STATE,COST>		HeuristicT;
  typedef Goal<STATE>			GoalT;

  double				temperature;
  const double				decay;

public:
  AnnealingFilter(double temperature, double decay) :
    temperature(temperature),
    decay(decay) {
    assert(0 <= decay);
    assert(decay <= 1);
  }
  virtual ~AnnealingFilter() {}

  void setTemperature(double temperature) {
    this->temperature = temperature;
  }

  virtual double convertToDelta(COST childEstimate, COST parentEstimate) const
    = 0;

  void signal(const SearchIteration&message) {
    temperature *= decay;
  }

  void operator()
    (std::set<STATE>&children,
     const STATE&parent,
     const HeuristicT&heuristic,
     const GoalT&goal) const {
    GreedyFilter<STATE,COST>::operator()(children, heuristic, goal);
    assert(children.size() <= 1);
    if (children.size()) {
      typename std::set<STATE>::iterator child = children.begin();
      COST childEstimate = heuristic.estimate(*child, goal);
      COST parentEstimate = heuristic.estimate(parent, goal);
      if (!(parentEstimate < childEstimate)) {
	// Always take good moves.
	return;
      }
      double delta = convertToDelta(childEstimate, parentEstimate);
      double probability = exp(delta / temperature);
      int boundary = (int)(probability * RAND_MAX);
      if (rand() < boundary) {
	// Sometimes take bad moves.
	return;
      }
      children.clear();
    }
    // When no moves are possible or a bad move is rejected, keep the parent.
    children.insert(parent);
  }
};

#endif