Skip to content

Commit

Permalink
Moertel: Deprecated code removal
Browse files Browse the repository at this point in the history
  • Loading branch information
csiefer2 committed Jun 16, 2022
1 parent 255d336 commit 3fb1d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mortar/Moertel_UtilsT_Def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ MoertelT::StripZeros(const Tpetra::CrsMatrix<ST, LO, GO, N>& A, double eps)
typename Tpetra::CrsMatrix<ST, LO, GO, N>::local_inds_host_view_type lindices;
typename Tpetra::CrsMatrix<ST, LO, GO, N>::values_host_view_type values;
// int err = A.ExtractMyRowView(lrow,numentries,values,lindices);
A.getLocalRowView(lrow,numentries,lindices,values);
A.getLocalRowView(lrow,lindices,values);
int numentries = (int) lindices.size();
for (int j=0; j<numentries; ++j)
{
Expand Down

0 comments on commit 3fb1d2a

Please sign in to comment.