24#ifndef DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_NORMAL_AXIS_HH
25#define DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_NORMAL_AXIS_HH
43 constexpr auto eps = 1e-8;
44 assert(std::any_of(v.begin(), v.end(), [=](
auto x){ return abs(x) > eps; }));
47 std::begin(v), std::find_if(v.begin(), v.end(), [eps=eps](
auto x){ return abs(x) > eps; })
51 assert(v[result] == std::accumulate(v.begin(), v.end(), 0.0));
static ctype distance(const Dune::FieldVector< ctype, dimWorld > &a, const Dune::FieldVector< ctype, dimWorld > &b)
Compute the shortest distance between two points.
Definition: distance.hh:292
static std::size_t normalAxis(const Vector &v)
Definition: normalaxis.hh:39