/* Copyright (C) Bernard Piette University of Durham (UK) Department of Mathematical Sciences This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. You can modify or use any part of the source code but only under the condition that this Copyright notice is kept in the resulting source file. */ #ifndef PDE_EULER_H #define PDE_EULER_H #include class pde_euler : public pde { public: pde_euler(double xmin,double xmax,int nx); ~pde_euler(); virtual double integrate_1step(); protected: double *tmp1_; // Same size as Fcts_ }; #endif