Fix boolean in specialization.

The default implementation is the parallel version. Therefore the boolean
in the specialization (sequential run) needs to be false.
This commit is contained in:
Markus Blatt 2015-11-13 15:43:44 +01:00
parent f8715e31e7
commit 980928bfa9

View File

@ -105,7 +105,7 @@ namespace Opm {
}
};
template<>
struct AverageIncrementCalculator<true>
struct AverageIncrementCalculator<false>
{
std::tuple<double, double, int>
operator()(const std::vector<double>& pressure,