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
4 changes: 2 additions & 2 deletions include/prismspf/core/triangulation_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ class TriangulationHandler
get_mg_triangulation(unsigned int level) const;

/**
* @brief Return the maximum multigrid level.
* @brief Return the minimum multigrid level.
*/
[[nodiscard]] unsigned int
get_mg_min_level() const;

/**
* @brief Return the minimum multigrid level.
* @brief Return the maximum multigrid level.
*/
[[nodiscard]] unsigned int
get_mg_max_level() const;
Expand Down
6 changes: 3 additions & 3 deletions src/core/solver_handler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ SolverHandler<dim, degree, number>::solve(unsigned int increment,
{
for (auto &[block_index, solve_block] : solve_blocks)
{
ConditionalOStreams::pout_base()
<< "solving 0th timestep for solve block " << std::to_string(block_index)
<< " ...\n " << std::flush;
ConditionalOStreams::pout_base() << "solving 0th timestep for solve block "
<< std::to_string(block_index) << " ...\n"
<< std::flush;
solve_block.solve(increment, update_postprocessed);
}
return;
Expand Down