diff --git a/DevicePersistent/Partition/Partition.H b/DevicePersistent/Partition/Partition.H index 2b2c377a2..205d362aa 100644 --- a/DevicePersistent/Partition/Partition.H +++ b/DevicePersistent/Partition/Partition.H @@ -31,7 +31,6 @@ SourceFiles #include -#include "HostMatrix/HostMatrix.H" #include "DevicePersistent/Base/Base.H" #include "DevicePersistent/ExecutorHandler/ExecutorHandler.H" #include "HostMatrix/HostMatrix.H" diff --git a/Solver/GMRES/GKOGMRES.H b/Solver/GMRES/GKOGMRES.H index 4d3b253af..46382d9f6 100644 --- a/Solver/GMRES/GKOGMRES.H +++ b/Solver/GMRES/GKOGMRES.H @@ -69,9 +69,8 @@ public: std::unique_ptr> create_default(std::shared_ptr exec) const { - auto gmres = gmres::build() - .with_criteria(stoppingCriterionVec_) - .on(exec); + auto gmres = + gmres::build().with_criteria(stoppingCriterionVec_).on(exec); return gmres; };