Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

ZeroTAnnealMinimizer.h

Go to the documentation of this file.
00001 // ZeroTAnnealMinimizer.h: interface for the ZeroTAnnealMinimizer class.
00002 //
00004 
00005 #if !defined(AFX_ZEROTANNEALMINIMIZER_H__01BFD489_2688_11D4_8695_00A0C9B3BB18__INCLUDED_)
00006 #define AFX_ZEROTANNEALMINIMIZER_H__01BFD489_2688_11D4_8695_00A0C9B3BB18__INCLUDED_
00007 
00008 #if _MSC_VER > 1000
00009 #pragma once
00010 #endif // _MSC_VER > 1000
00011 
00012 #include "Minimizer.h"
00013 #include "Rand.h"
00014 #include <iostream>
00015 #include <iomanip>
00016 using namespace std;
00017 
00018 class ZeroTAnnealMinimizer : public Minimizer 
00019 {
00020 public:
00021         ZeroTAnnealMinimizer();
00022         ZeroTAnnealMinimizer(int seed, int nSteps);
00023         virtual ~ZeroTAnnealMinimizer();
00024         double Minimize(double *parameters, Minimizable *minimizable);
00025 private:
00026         int seed;
00027         int nSteps;
00028 };
00029 
00030 #endif // !defined(AFX_ZEROTANNEALMINIMIZER_H__01BFD489_2688_11D4_8695_00A0C9B3BB18__INCLUDED_)

Generated on Mon Nov 3 09:38:20 2003 by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002