Skip to content

Commit

Permalink
Fix bugs after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Rombur committed Jan 30, 2024
1 parent c09454c commit 8b24c36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion ci/jenkins_config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ pipeline {
timeout(time: 6, unit: 'HOURS')
}

<<<<<<< HEAD
triggers {
issueCommentTrigger('.*test this please.*')
}
Expand Down
6 changes: 3 additions & 3 deletions source/MaterialProperty.templates.hh
Original file line number Diff line number Diff line change
Expand Up @@ -928,16 +928,16 @@ void MaterialProperty<dim, MemorySpaceType>::fill_properties(
double infinity = std::numeric_limits<double>::infinity();
if (_use_table)
{
mechanical_property_tables_host_view(
_mechanical_properties_tables_host(
material_id, p - g_n_thermal_state_properties, 0, 0) =
infinity;
mechanical_property_tables_host_view(
_mechanical_properties_tables_host(
material_id, p - g_n_thermal_state_properties, 0, 1) =
infinity;
}
else
{
mechanical_property_polynomials_host_view(
_mechanical_properties_polynomials_host(
material_id, p - g_n_thermal_state_properties, 0) = infinity;
}
}
Expand Down
1 change: 1 addition & 0 deletions source/PostProcessor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ PostProcessor<dim>::PostProcessor(
database.get<unsigned int>("additional_output_refinement", 0);
}

template <int dim>
void PostProcessor<dim>::write_pvd() const
{
std::ofstream output(_filename_prefix + ".pvd");
Expand Down

0 comments on commit 8b24c36

Please sign in to comment.