- Timestamp:
- 03/17/08 03:34:42 (8 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
documentation/documentation.html (modified) (2 diffs)
-
simulated-annealing.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/documentation/documentation.html
r37 r38 124 124 because GSL does not supply an example and it is not clear how it is 125 125 used. Contributions welcome. 126 <li><a href="Simulated-Annealing.html">Simulated Annealing</a> has 127 been done but does not work. 126 <li><a href="Simulated-Annealing.html">Simulated Annealing</a> is 127 known have problems in GSL and <a 128 href="https://gna.org/projects/annealing">is being redesigned</a>; 129 the distributed version has been ported in GSLL but does not work. 128 130 <li><a href="Wavelet-Transforms.html">Wavelet Transforms</a> has been 129 131 done but the results of the example do not agree with the GSL manual. … … 151 153 <!-- hhmts start --> 152 154 <small> 153 Time-stamp: <2008-03-1 5 21:59:58EDT documentation.html>155 Time-stamp: <2008-03-16 09:28:03EDT documentation.html> 154 156 </small> 155 157 <!-- hhmts end --> -
trunk/simulated-annealing.lisp
r26 r38 1 1 ;; Simulated Annealing 2 2 ;; Liam Healy Sun Feb 11 2007 - 17:23 3 ;; Time-stamp: <2008-0 2-17 18:29:20EST simulated-annealing.lisp>3 ;; Time-stamp: <2008-03-15 23:10:25EDT simulated-annealing.lisp> 4 4 ;; $Id$ 5 5 … … 142 142 (abs (- x y))))) 143 143 144 (defvar *sa-function-calls*) 145 144 146 (defun E2 (arg) 145 147 (with-c-double (arg x)
