Definition at line 97 of file simplex.cpp.
97 {
98 uint8_t h =
hash & 31;
99 int32_t u = h < 24 ?
x :
y;
100 int32_t v = h < 16 ?
y :
z;
101 int32_t w = h < 8 ?
z :
t;
102 return ((h&1) != 0 ? -u : u) + ((h&2) != 0 ? -v : v) + ((h&4) != 0 ? -w : w);
103}
References t, x, y, and z.