Skip to content
Snippets Groups Projects
Commit d8b55d55 authored by Tom Fischer's avatar Tom Fischer
Browse files

[PL] Clang format parts of HTProcess.

parent 81d275e0
No related branches found
No related tags found
No related merge requests found
...@@ -141,8 +141,8 @@ void HTProcess::assembleWithJacobianConcreteProcess( ...@@ -141,8 +141,8 @@ void HTProcess::assembleWithJacobianConcreteProcess(
// Call global assembler for each local assembly item. // Call global assembler for each local assembly item.
GlobalExecutor::executeMemberDereferenced( GlobalExecutor::executeMemberDereferenced(
_global_assembler, &VectorMatrixAssembler::assembleWithJacobian, _global_assembler, &VectorMatrixAssembler::assembleWithJacobian,
_local_assemblers, dof_tables, t, x, xdot, dxdot_dx, _local_assemblers, dof_tables, t, x, xdot, dxdot_dx, dx_dx, M, K, b,
dx_dx, M, K, b, Jac, _coupled_solutions); Jac, _coupled_solutions);
} }
void HTProcess::preTimestepConcreteProcess(GlobalVector const& x, void HTProcess::preTimestepConcreteProcess(GlobalVector const& x,
...@@ -182,7 +182,7 @@ void HTProcess::setCoupledTermForTheStaggeredSchemeToLocalAssemblers() ...@@ -182,7 +182,7 @@ void HTProcess::setCoupledTermForTheStaggeredSchemeToLocalAssemblers()
} }
std::tuple<NumLib::LocalToGlobalIndexMap*, bool> std::tuple<NumLib::LocalToGlobalIndexMap*, bool>
HTProcess::getDOFTableForExtrapolatorData() const HTProcess::getDOFTableForExtrapolatorData() const
{ {
if (!_use_monolithic_scheme) if (!_use_monolithic_scheme)
{ {
...@@ -200,9 +200,10 @@ std::tuple<NumLib::LocalToGlobalIndexMap*, bool> ...@@ -200,9 +200,10 @@ std::tuple<NumLib::LocalToGlobalIndexMap*, bool>
const bool manage_storage = true; const bool manage_storage = true;
return std::make_tuple(new NumLib::LocalToGlobalIndexMap( return std::make_tuple(new NumLib::LocalToGlobalIndexMap(
std::move(all_mesh_subsets_single_component), std::move(all_mesh_subsets_single_component),
// by location order is needed for output // by location order is needed for output
NumLib::ComponentOrder::BY_LOCATION), manage_storage); NumLib::ComponentOrder::BY_LOCATION),
manage_storage);
} }
void HTProcess::setCoupledSolutionsOfPreviousTimeStep() void HTProcess::setCoupledSolutionsOfPreviousTimeStep()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment