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 the type of an array. #16451

Merged
merged 1 commit into from
Jan 12, 2024
Merged
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
3 changes: 2 additions & 1 deletion include/deal.II/lac/trilinos_tpetra_sparsity_pattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,8 @@ namespace LinearAlgebra
// TODO: The following line creates an array by copying the entries.
// Perhaps there is a way to only create a 'view' of these arrays
// and pass that to Tpetra?
Teuchos::Array<long long> array(col_index_ptr_begin, col_index_ptr_end);
Teuchos::Array<TrilinosWrappers::types::int_type> array(
col_index_ptr_begin, col_index_ptr_end);

if (row_is_stored_locally(row))
graph->insertGlobalIndices(trilinos_row_index, array());
Expand Down