fix bug for some compilers with nansum on integer type
Thibault Hallouin authored
Checking the "nan-ness" of an integer is ill-posed, such that
the standard library of some compilers returns an error message.
Dropping the nan filter here for the sum is safe because `xt::equal`
evaluates to false when either operand is NAN.
fdd02b33

evalhyd

Utility to evaluate deterministic and probabilistic streamflow predictions

Documentation: https://hydrogr.github.io/evalhyd/cpp

How to build

Configure project in debug mode finding libraries in conda environment:

cmake -B build/ -D CMAKE_BUILD_TYPE=Debug -D CMAKE_PREFIX_PATH="$CONDA_PREFIX"

Compile with:

cmake --build build/ --parallel 2

Run tests with:

./build/tests/evalhyd_tests  

How to install

cmake --install build/ --prefix <path>