Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Heat_Eqn_Parallel/MPI_heat_eqn.cc
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ template <int dim> void HeatEquation<dim>::setup_system() {
system_rhs.reinit(locally_owned_dofs, mpi_communicator);

constraints.clear();
constraints.reinit(locally_owned_dofs, locally_relevant_dofs);
DoFTools::make_hanging_node_constraints(dof_handler, constraints);
VectorTools::interpolate_boundary_values(
dof_handler, 0, Functions::ZeroFunction<dim>(), constraints);
Expand Down
4 changes: 2 additions & 2 deletions L-BFGS-phasefield-solver/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ SET(TARGET_SRC

# Usually, you will not need to modify anything beyond this point...

CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0)
CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4)

FIND_PACKAGE(deal.II 9.4.0
FIND_PACKAGE(deal.II 9.6.0
HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
)
IF(NOT ${deal.II_FOUND})
Expand Down
4 changes: 2 additions & 2 deletions MLMC_random_darcy_flow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ SET(TARGET_SRC
PROJECT(${TARGET} CXX)


CMAKE_MINIMUM_REQUIRED(VERSION 3.28.0)
CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4)

FIND_PACKAGE(deal.II 9.7.1
FIND_PACKAGE(deal.II 9.6.0
HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
)
IF(NOT ${deal.II_FOUND})
Expand Down
5 changes: 2 additions & 3 deletions advection_reaction_estimator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ SET(TARGET_SRC
main.cc
)

PROJECT(${TARGET} CXX)


CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4)

PROJECT(${TARGET} CXX)

FIND_PACKAGE(deal.II 9.6.0
HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
)
Expand Down