X-Git-Url: http://git.euphorik.ch/?p=GPU.git;a=blobdiff_plain;f=WCudaMSE%2FStudent_Cuda_Image%2Fsrc%2Fcpp%2Fcore%2F03_Newton%2Fmoo%2Fhost%2FNewton.h;h=0b876f08fc5c5a3641bf6d1c762a2ba3e98134a4;hp=ad869799491ecc4fb82e41719b2b37366d0ee6a8;hb=7753d7abc9c1cdf90793a2936221aa4951c574b3;hpb=cb39d6a91b65d2862018430d65e633d2a8fdc818 diff --git a/WCudaMSE/Student_Cuda_Image/src/cpp/core/03_Newton/moo/host/Newton.h b/WCudaMSE/Student_Cuda_Image/src/cpp/core/03_Newton/moo/host/Newton.h index ad86979..0b876f0 100755 --- a/WCudaMSE/Student_Cuda_Image/src/cpp/core/03_Newton/moo/host/Newton.h +++ b/WCudaMSE/Student_Cuda_Image/src/cpp/core/03_Newton/moo/host/Newton.h @@ -4,6 +4,7 @@ #include "cudaTools.h" #include "AnimableFonctionel_I.h" #include "MathTools.h" +#include "VariateurI.h" #include "VariateurF.h" class Newton : public AnimableFonctionel_I @@ -24,8 +25,11 @@ class Newton : public AnimableFonctionel_I string getTitle(void) /*override*/; private: - VariateurF variateurAnimation; + VariateurI variateurN; // Variateur sur le nombre d'iteration max. + VariateurF variateurEpsilon; // Variateur sur epsilon. + float t; + float epsilon; // Inputs const int w;