From 01f3275a5101278f947595fcec43eb5f4b659af1 Mon Sep 17 00:00:00 2001 From: buerg Date: Sat, 11 Aug 2012 13:36:34 +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@25898 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/files | 4 ++-- .../deal.II/lac/block_sparse_matrix_ez.h | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/deal.II/files b/deal.II/files index 217da7f736..6f6a5c61f2 100644 --- a/deal.II/files +++ b/deal.II/files @@ -115,7 +115,7 @@ source/hp/mapping_collection.cc source/lac/block_matrix_array.cc MARKUS source/lac/block_sparse_matrix.cc MARKUS source/lac/block_sparse_matrix_ez.cc -source/lac/block_sparsity_pattern.cc +MARKUS source/lac/block_sparsity_pattern.cc source/lac/block_vector.cc source/lac/chunk_sparse_matrix.cc source/lac/chunk_sparsity_pattern.cc @@ -366,7 +366,7 @@ 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 MARKUS include/deal.II/lac/block_sparse_matrix.templates.h -include/deal.II/lac/block_sparsity_pattern.h +MARKUS include/deal.II/lac/block_sparsity_pattern.h include/deal.II/lac/block_vector_base.h include/deal.II/lac/block_vector.h include/deal.II/lac/block_vector.templates.h diff --git a/deal.II/include/deal.II/lac/block_sparse_matrix_ez.h b/deal.II/include/deal.II/lac/block_sparse_matrix_ez.h index 76186088d1..861c95d392 100644 --- a/deal.II/include/deal.II/lac/block_sparse_matrix_ez.h +++ b/deal.II/include/deal.II/lac/block_sparse_matrix_ez.h @@ -207,7 +207,7 @@ class BlockSparseMatrixEZ : public Subscriptor * matrix is of dimension * $m \times n$. */ - unsigned int m () const; + types::global_dof_index m () const; /** * Return the dimension of the @@ -215,7 +215,7 @@ class BlockSparseMatrixEZ : public Subscriptor * matrix is of dimension * $m \times n$. */ - unsigned int n () const; + types::global_dof_index n () const; /** * Set the element (i,j) @@ -226,8 +226,8 @@ class BlockSparseMatrixEZ : public Subscriptor * allowed to store zero values * in non-existent fields. */ - void set (const unsigned int i, - const unsigned int j, + void set (const types::global_dof_index i, + const types::global_dof_index j, const Number value); /** @@ -239,7 +239,7 @@ class BlockSparseMatrixEZ : public Subscriptor * is allowed to store zero * values in non-existent fields. */ - void add (const unsigned int i, const unsigned int j, + void add (const types::global_dof_index i, const types::global_dof_index j, const Number value); @@ -417,8 +417,8 @@ BlockSparseMatrixEZ::n () const template inline void -BlockSparseMatrixEZ::set (const unsigned int i, - const unsigned int j, +BlockSparseMatrixEZ::set (const types::global_dof_index i, + const types::global_dof_index j, const Number value) { @@ -437,8 +437,8 @@ BlockSparseMatrixEZ::set (const unsigned int i, template inline void -BlockSparseMatrixEZ::add (const unsigned int i, - const unsigned int j, +BlockSparseMatrixEZ::add (const types::global_dof_index i, + const types::global_dof_index j, const Number value) { -- 2.39.5