00001 #ifndef STEEPESTDESCENT_H_ 00002 #define STEEPESTDESCENT_H_ 00003 00004 #include "CGeneralLinInversion.h" 00005 #include "VecMat.h" 00006 00007 class SteepestDescent: public CGeneralLinInversion 00008 { 00009 public: 00010 SteepestDescent(); 00011 virtual ~SteepestDescent(); 00012 void virtual Prepare(); 00013 void virtual DoIteration(); //This is the main method to be implemented 00014 }; 00015 00016 #endif /*STEEPESTDESCENT_H_*/
1.5.8