16#ifndef IJK_subres_constants_included
17#define IJK_subres_constants_included
19static constexpr int NEIGHBOURS_I[6] = {-1, 1, 0, 0, 0, 0};
20static constexpr int NEIGHBOURS_J[6] = {0, 0, -1, 1, 0, 0};
21static constexpr int NEIGHBOURS_K[6] = {0, 0, 0, 0, -1, 1};
22static constexpr int NEIGHBOURS_FACES_I[6] = {0, 1, 0, 0, 0, 0};
23static constexpr int NEIGHBOURS_FACES_J[6] = {0, 0, 0, 1, 0, 0};
24static constexpr int NEIGHBOURS_FACES_K[6] = {0, 0, 0, 0, 0, 1};
25static constexpr double LIQUID_INDICATOR_TEST = 1.-1.e-12;
26static constexpr double VAPOUR_INDICATOR_TEST = 1.e-12;
29#define INVALID_TEST -1.e30