Skip to content

Commit

Permalink
Let DealIIMatrixFreeOperator::multiply_transpose() return a DeallTril…
Browse files Browse the repository at this point in the history
…inosMatrixOperator
  • Loading branch information
dalg24 committed Dec 18, 2018
1 parent 75ba192 commit 0103ea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/dealii/dealii_matrix_free_operator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ DealIIMatrixFreeOperator<VectorType>::multiply_transpose(

matrix_transpose_matrix_multiply(*c_mat, *b_mat, *this);

return std::make_shared<DealIIMatrixFreeOperator<VectorType>>(c_mat);
return std::make_shared<DealIITrilinosMatrixOperator<VectorType>>(c_mat);
}

template <typename VectorType>
Expand Down

0 comments on commit 0103ea2

Please sign in to comment.