mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
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:
@@ -105,7 +105,7 @@ namespace Opm {
|
||||
}
|
||||
};
|
||||
template<>
|
||||
struct AverageIncrementCalculator<true>
|
||||
struct AverageIncrementCalculator<false>
|
||||
{
|
||||
std::tuple<double, double, int>
|
||||
operator()(const std::vector<double>& pressure,
|
||||
|
||||
Reference in New Issue
Block a user