From 1242a37e93fe8963ce03f90b99b6ca611a90034e Mon Sep 17 00:00:00 2001 From: buerg Date: Sat, 11 Aug 2012 13:24:29 +0000 Subject: [PATCH] Change unsigned int to types::global_dof_index. git-svn-id: https://svn.dealii.org/branches/branch_bigger_global_dof_indices_3@25897 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/files | 8 ++++---- deal.II/include/deal.II/lac/block_sparse_matrix.h | 2 +- .../include/deal.II/lac/block_sparse_matrix.templates.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deal.II/files b/deal.II/files index c46741c815..217da7f736 100644 --- a/deal.II/files +++ b/deal.II/files @@ -114,7 +114,7 @@ MARKUS source/hp/fe_values.cc source/hp/mapping_collection.cc source/lac/block_matrix_array.cc MARKUS source/lac/block_sparse_matrix.cc -source/lac/block_sparse_matrix_ez.cc +MARKUS source/lac/block_sparse_matrix_ez.cc source/lac/block_sparsity_pattern.cc source/lac/block_vector.cc source/lac/chunk_sparse_matrix.cc @@ -362,10 +362,10 @@ include/deal.II/lac/block_list.h include/deal.II/lac/block_matrix_array.h include/deal.II/lac/block_matrix_base.h include/deal.II/lac/block_matrix.h -include/deal.II/lac/block_sparse_matrix_ez.h -include/deal.II/lac/block_sparse_matrix_ez.templates.h +MARKUS include/deal.II/lac/block_sparse_matrix_ez.h +MARKUS include/deal.II/lac/block_sparse_matrix_ez.templates.h MARKUS include/deal.II/lac/block_sparse_matrix.h -include/deal.II/lac/block_sparse_matrix.templates.h +MARKUS include/deal.II/lac/block_sparse_matrix.templates.h include/deal.II/lac/block_sparsity_pattern.h include/deal.II/lac/block_vector_base.h include/deal.II/lac/block_vector.h diff --git a/deal.II/include/deal.II/lac/block_sparse_matrix.h b/deal.II/include/deal.II/lac/block_sparse_matrix.h index 1e423bb5a6..b06bbdb0a8 100644 --- a/deal.II/include/deal.II/lac/block_sparse_matrix.h +++ b/deal.II/include/deal.II/lac/block_sparse_matrix.h @@ -204,7 +204,7 @@ class BlockSparseMatrix : public BlockMatrixBase > * Return the number of entries * in a specific row. */ - unsigned int get_row_length (const unsigned int row) const; + unsigned int get_row_length (const types::global_dof_index row) const; /** * Return the number of nonzero diff --git a/deal.II/include/deal.II/lac/block_sparse_matrix.templates.h b/deal.II/include/deal.II/lac/block_sparse_matrix.templates.h index 27e7eec1f1..11f22df889 100644 --- a/deal.II/include/deal.II/lac/block_sparse_matrix.templates.h +++ b/deal.II/include/deal.II/lac/block_sparse_matrix.templates.h @@ -128,7 +128,7 @@ BlockSparseMatrix::empty () const template unsigned int -BlockSparseMatrix::get_row_length (const unsigned int row) const +BlockSparseMatrix::get_row_length (const types::global_dof_index row) const { return sparsity_pattern->row_length(row); } -- 2.39.5