mirror of
https://github.com/OPM/opm-simulators.git
synced 2026-07-30 02:27:55 -05:00
Added braces around else statement (coding guidelines)
This commit is contained in:
@@ -522,8 +522,10 @@ createEllipticPreconditionerPointer(const M& Ae, double relax,
|
|||||||
amg_ = std::unique_ptr< AMG > (new AMG(*opAe_, criterion, smootherArgs));
|
amg_ = std::unique_ptr< AMG > (new AMG(*opAe_, criterion, smootherArgs));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
precond_ = createEllipticPreconditionerPointer<M,X>( Ae_, relax_, comm);
|
precond_ = createEllipticPreconditionerPointer<M,X>( Ae_, relax_, comm);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Opm
|
} // namespace Opm
|
||||||
|
|||||||
Reference in New Issue
Block a user