Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   Related Pages  

CG_NE.hpp

00001 #ifndef __CG_NE_H__
00002 #define __CG_NE_H__
00003 
00004 
00027 #include "AbsTriDiagIterativeLS.hpp"
00028 
00029 class   CG_NE : public AbsTriDiagIterativeLS 
00030 {
00031 protected:
00032 
00033 double                          alpha;
00034 double                          beta;
00035         
00036 RealVector*                     r;
00037 RealVector*                     p$;
00038 
00039 RealVector*                     ap$;
00040 
00041 RTriDiagonalMatrix*     At;
00042 
00043 
00044 public:
00045         
00046 CG_NE(int asize, int iterMax, double eps=1e-4):AbsTriDiagIterativeLS(asize, iterMax, eps)
00047         {
00048         r= new RealVector(N);
00049         p$= new RealVector(N);
00050 
00051         ap$= new RealVector(N);
00052 
00053         At= new RTriDiagonalMatrix(N);
00054         }
00055 
00056 virtual ~CG_NE(){delete r; delete p$; delete ap$; delete At;}
00057 
00058 virtual bool iterate();                                 // SOLVING to define 
00059 
00060 virtual void output()
00061         {
00062         printf("CG NE ");
00063         AbsTriDiagIterativeLS::output();
00064         }
00065 
00066 virtual void output(FILE* file)
00067         {
00068         fprintf(file, "CG NE ");
00069         AbsTriDiagIterativeLS::output(file);
00070         }
00071 };
00072 
00073 #endif
00074 
00075 
00076          
SourceForge.net Logo
Restoreinpaint sourceforge project `C++/Java Image Processing, Restoration, Inpainting Project'.

Bernard De Cuyper: Open Project Leader: Concept, design and development.
Bernard De Cuyper & Eddy Fraiha 2002, 2003. Bernard De Cuyper 2004. Open and free, for friendly usage only.
Modifications on Belgium ground of this piece of artistic work, by governement institutions or companies, must be notified to Bernard De Cuyper.
bern_bdc@hotmail.com