Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-istl
Commits
14411c28
Commit
14411c28
authored
12 years ago
by
Christoph Grüninger
Browse files
Options
Downloads
Patches
Plain Diff
Spelling and wrong comments, fixes FS#1274.
(kudos to Elias Pipping for the patch) [[Imported from SVN: r1910]]
parent
fa205556
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
COPYING
+1
-1
1 addition, 1 deletion
COPYING
dune/istl/bcrsmatrix.hh
+1
-1
1 addition, 1 deletion
dune/istl/bcrsmatrix.hh
dune/istl/matrixmarket.hh
+7
-7
7 additions, 7 deletions
dune/istl/matrixmarket.hh
dune/istl/scaledidmatrix.hh
+2
-2
2 additions, 2 deletions
dune/istl/scaledidmatrix.hh
with
11 additions
and
11 deletions
COPYING
+
1
−
1
View file @
14411c28
...
@@ -20,7 +20,7 @@ Copyright holders:
...
@@ -20,7 +20,7 @@ Copyright holders:
2010--2012 Rebecca Neumann
2010--2012 Rebecca Neumann
2012 Andreas Nüßing
2012 Andreas Nüßing
2008--2012 Martin Nolte
2008--2012 Martin Nolte
2011
Elias Pipping
2011
--2013
Elias Pipping
2007 Sreejith Pulloor Kuttanikkad
2007 Sreejith Pulloor Kuttanikkad
2009 Atgeirr Rasmussen
2009 Atgeirr Rasmussen
2008--2012 Uli Sack
2008--2012 Uli Sack
...
...
This diff is collapsed.
Click to expand it.
dune/istl/bcrsmatrix.hh
+
1
−
1
View file @
14411c28
...
@@ -105,7 +105,7 @@ namespace Dune {
...
@@ -105,7 +105,7 @@ namespace Dune {
typedef FieldMatrix<double,2,2> M;
typedef FieldMatrix<double,2,2> M;
// third parameter is an optional upper bound for the number
// third parameter is an optional upper bound for the number
// of nonzeros. If given the matrix will use one array for all values
// of nonzeros. If given the matrix will use one array for all values
// as opo
s
sed to one for each row.
// as op
p
osed to one for each row.
BCRSMatrix<M> B(4,4,12,BCRSMatrix<M>::row_wise);
BCRSMatrix<M> B(4,4,12,BCRSMatrix<M>::row_wise);
typedef BCRSMatrix<M>::CreateIterator Iter;
typedef BCRSMatrix<M>::CreateIterator Iter;
...
...
This diff is collapsed.
Click to expand it.
dune/istl/matrixmarket.hh
+
7
−
7
View file @
14411c28
...
@@ -26,7 +26,7 @@ namespace Dune
...
@@ -26,7 +26,7 @@ namespace Dune
* in various formats.
* in various formats.
*
*
*
*
* Routine printmatix prints a (sparse matrix with all entries (even zeroes).
* Routine printmat
r
ix prints a (sparse matrix with all entries (even zeroes).
* Function printvector prints a vector to a stream.
* Function printvector prints a vector to a stream.
* PrintSparseMatrix prints a sparse matrix omitting all nonzeroes.
* PrintSparseMatrix prints a sparse matrix omitting all nonzeroes.
* With writeMatrixToMatlab one can write a matrix in a Matlab readable format.
* With writeMatrixToMatlab one can write a matrix in a Matlab readable format.
...
@@ -59,7 +59,7 @@ namespace Dune
...
@@ -59,7 +59,7 @@ namespace Dune
struct
mm_numeric_type
{
struct
mm_numeric_type
{
enum
{
enum
{
/**
/**
* @brief Whethe T is a supported numeric type.
* @brief Whethe
r
T is a supported numeric type.
*/
*/
is_numeric
=
false
is_numeric
=
false
};
};
...
@@ -70,7 +70,7 @@ namespace Dune
...
@@ -70,7 +70,7 @@ namespace Dune
{
{
enum
{
enum
{
/**
/**
* @brief Whethe T is a supported numeric type.
* @brief Whethe
r
T is a supported numeric type.
*/
*/
is_numeric
=
true
is_numeric
=
true
};
};
...
@@ -86,7 +86,7 @@ namespace Dune
...
@@ -86,7 +86,7 @@ namespace Dune
{
{
enum
{
enum
{
/**
/**
* @brief Whethe T is a supported numeric type.
* @brief Whethe
r
T is a supported numeric type.
*/
*/
is_numeric
=
true
is_numeric
=
true
};
};
...
@@ -102,7 +102,7 @@ namespace Dune
...
@@ -102,7 +102,7 @@ namespace Dune
{
{
enum
{
enum
{
/**
/**
* @brief Whethe T is a supported numeric type.
* @brief Whethe
r
T is a supported numeric type.
*/
*/
is_numeric
=
true
is_numeric
=
true
};
};
...
@@ -118,7 +118,7 @@ namespace Dune
...
@@ -118,7 +118,7 @@ namespace Dune
{
{
enum
{
enum
{
/**
/**
* @brief Whethe T is a supported numeric type.
* @brief Whethe
r
T is a supported numeric type.
*/
*/
is_numeric
=
true
is_numeric
=
true
};
};
...
@@ -134,7 +134,7 @@ namespace Dune
...
@@ -134,7 +134,7 @@ namespace Dune
{
{
enum
{
enum
{
/**
/**
* @brief Whethe T is a supported numeric type.
* @brief Whethe
r
T is a supported numeric type.
*/
*/
is_numeric
=
true
is_numeric
=
true
};
};
...
...
This diff is collapsed.
Click to expand it.
dune/istl/scaledidmatrix.hh
+
2
−
2
View file @
14411c28
...
@@ -171,14 +171,14 @@ namespace Dune {
...
@@ -171,14 +171,14 @@ namespace Dune {
return
*
this
;
return
*
this
;
}
}
//!
vector space multiplication with scalar
//!
addition to the diagonal
ScaledIdentityMatrix
&
operator
+=
(
const
K
&
k
)
ScaledIdentityMatrix
&
operator
+=
(
const
K
&
k
)
{
{
p_
+=
k
;
p_
+=
k
;
return
*
this
;
return
*
this
;
}
}
//!
vector space division by scalar
//!
subtraction from the diagonal
ScaledIdentityMatrix
&
operator
-=
(
const
K
&
k
)
ScaledIdentityMatrix
&
operator
-=
(
const
K
&
k
)
{
{
p_
-=
k
;
p_
-=
k
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment