00001 #ifndef _MULTIGRIDSTENCILS_H_ 00002 #define _MULTIGRIDSTENCILS_H_ 00003 00004 #include <memory> 00005 00006 #include "RectMDArray.H" 00007 #include "LevelData.H" 00008 #include "BLIterator.H" 00009 #include "CH_Timer.H" 00010 #include "Stencil.H" 00011 00012 extern Stencil<double> g_Laplacian; 00013 extern Stencil<double> g_PointRelax; 00014 extern Stencil<double> g_AvgDown[1 << DIM]; 00015 extern Stencil<double> g_FineInterp; 00016 00017 extern void buildMultigridStencils(); 00018 00019 #endif