--- /dev/null
+Removed: The deprecated exception ParameterHandler::ExcInvalidEntryForPatternXML
+and the deprecated overload of SparsityTools::gather_sparsity_pattern()
+have been removed.
+<br>
+(Daniel Arndt, 2021/06/07)
"The provided file could not be parsed as a "
"ParameterHandler description.");
- /**
- * Exception for when an entry in an XML parameter file does not match the
- * provided pattern. The arguments are, in order, the entry value, entry
- * name, and a description of the pattern.
- *
- * @deprecated Use ExcValueDoesNotMatchPattern instead of ExcInvalidEntryForPatternXML.
- */
- using ExcInvalidEntryForPatternXML DEAL_II_DEPRECATED =
- ExcValueDoesNotMatchPattern;
-
/**
* Exception for when the file given in an include statement cannot be
* open. The arguments are, in order, the line number of the include
const MPI_Comm & mpi_comm,
const IndexSet & locally_relevant_rows);
- /**
- * @deprecated Use the gather_sparsity_pattern() method with the index set
- * for the present processor only.
- */
- DEAL_II_DEPRECATED void
- gather_sparsity_pattern(DynamicSparsityPattern & dsp,
- const std::vector<IndexSet> &owned_rows_per_processor,
- const MPI_Comm & mpi_comm,
- const IndexSet & ghost_range);
-
#endif
#ifdef DEAL_II_WITH_MPI
- void
- gather_sparsity_pattern(DynamicSparsityPattern & dsp,
- const std::vector<IndexSet> &owned_rows_per_processor,
- const MPI_Comm & mpi_comm,
- const IndexSet & ghost_range)
- {
- const unsigned int myid = Utilities::MPI::this_mpi_process(mpi_comm);
- gather_sparsity_pattern(dsp,
- owned_rows_per_processor[myid],
- mpi_comm,
- ghost_range);
- }
-
-
-
void
gather_sparsity_pattern(DynamicSparsityPattern &dsp,
const IndexSet & locally_owned_rows,