1 #ifndef stabilization_types_h 2 #define stabilization_types_h 3 4 typedef enum { 5 STAB_NONE = 0, 6 STAB_SU = 1, // Streamline Upwind 7 STAB_SUPG = 2, // Streamline Upwind Petrov-Galerkin 8 } StabilizationType; 9 10 #endif // stabilization_types_h 11