mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Fix indentation
This commit is contained in:
parent
575120d4f0
commit
9cada4a5a5
@ -65,7 +65,7 @@ namespace Opm {
|
|||||||
template<class X, class Y>
|
template<class X, class Y>
|
||||||
void mv (const X& x, Y& y) const
|
void mv (const X& x, Y& y) const
|
||||||
{
|
{
|
||||||
#if !defined(NDEBUG) && HAVE_MPI
|
#if !defined(NDEBUG) && HAVE_MPI
|
||||||
// We need to make sure that all ranks are actually computing
|
// We need to make sure that all ranks are actually computing
|
||||||
// for the same well. Doing this by checking the name of the well.
|
// for the same well. Doing this by checking the name of the well.
|
||||||
int cstring_size = pinfo_->name().size()+1;
|
int cstring_size = pinfo_->name().size()+1;
|
||||||
@ -132,9 +132,9 @@ namespace Opm {
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Y temp(y);
|
Y temp(y);
|
||||||
mv(x, temp); // includes parallel reduction
|
mv(x, temp); // includes parallel reduction
|
||||||
y -= temp;
|
y -= temp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private:
|
private:
|
||||||
|
Loading…
Reference in New Issue
Block a user