Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix assert message #14369

Merged
merged 1 commit into from
Oct 23, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/deal.II/lac/chunk_sparse_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ class ChunkSparseMatrix : public virtual Subscriptor
* Exception
*/
DeclExceptionMsg(ExcSourceEqualsDestination,
"You are attempting an operation on two matrices that "
"You are attempting an operation on two vectors that "
"are the same object, but the operation requires that the "
"two objects are in fact different.");
/** @} */
Expand Down
2 changes: 1 addition & 1 deletion include/deal.II/lac/full_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ class FullMatrix : public Table<2, number>
* Exception
*/
DeclExceptionMsg(ExcSourceEqualsDestination,
"You are attempting an operation on two matrices that "
"You are attempting an operation on two vectors that "
"are the same object, but the operation requires that the "
"two objects are in fact different.");
/**
Expand Down
2 changes: 1 addition & 1 deletion include/deal.II/lac/petsc_matrix_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ namespace PETScWrappers
* Exception
*/
DeclExceptionMsg(ExcSourceEqualsDestination,
"You are attempting an operation on two matrices that "
"You are attempting an operation on two vectors that "
"are the same object, but the operation requires that the "
"two objects are in fact different.");

Expand Down
2 changes: 1 addition & 1 deletion include/deal.II/lac/sparse_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -1710,7 +1710,7 @@ class SparseMatrix : public virtual Subscriptor
* Exception
*/
DeclExceptionMsg(ExcSourceEqualsDestination,
"You are attempting an operation on two matrices that "
"You are attempting an operation on two vectors that "
"are the same object, but the operation requires that the "
"two objects are in fact different.");
/** @} */
Expand Down
2 changes: 1 addition & 1 deletion include/deal.II/lac/trilinos_sparse_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -1867,7 +1867,7 @@ namespace TrilinosWrappers
* Exception
*/
DeclExceptionMsg(ExcSourceEqualsDestination,
"You are attempting an operation on two matrices that "
"You are attempting an operation on two vectors that "
"are the same object, but the operation requires that the "
"two objects are in fact different.");

Expand Down
9 changes: 0 additions & 9 deletions include/deal.II/lac/trilinos_sparsity_pattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -948,15 +948,6 @@ namespace TrilinosWrappers
<< "The entry with index <" << arg1 << ',' << arg2
<< "> does not exist.");

/**
* Exception
*/
DeclExceptionMsg(
ExcSourceEqualsDestination,
"You are attempting an operation on two sparsity patterns that "
"are the same object, but the operation requires that the "
"two objects are in fact different.");

/**
* Exception
*/
Expand Down