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
822e1195
Commit
822e1195
authored
9 years ago
by
Ansgar Burchardt
Browse files
Options
Downloads
Patches
Plain Diff
Fix minor mistakes in the documentation.
parent
4646860e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/istl/bcrsmatrix.hh
+2
-2
2 additions, 2 deletions
dune/istl/bcrsmatrix.hh
dune/istl/matrix.hh
+2
-2
2 additions, 2 deletions
dune/istl/matrix.hh
with
4 additions
and
4 deletions
dune/istl/bcrsmatrix.hh
+
2
−
2
View file @
822e1195
...
...
@@ -1515,9 +1515,9 @@ namespace Dune {
return
*
this
;
}
/*! \brief Sub
s
tract the entries of another matrix
to
this one.
/*! \brief Subtract the entries of another matrix
from
this one.
*
* \param b The matrix to
add to
this one. Its sparsity pattern
* \param b The matrix to
subtract from
this one. Its sparsity pattern
* has to be subset of the sparsity pattern of this matrix.
*/
BCRSMatrix
&
operator
-=
(
const
BCRSMatrix
&
b
)
...
...
This diff is collapsed.
Click to expand it.
dune/istl/matrix.hh
+
2
−
2
View file @
822e1195
...
...
@@ -220,7 +220,7 @@ namespace Dune {
return
(
*
this
);
}
/** \brief
Multiplication with
a scalar */
/** \brief
Division by
a scalar */
Matrix
<
T
>&
operator
/=
(
const
field_type
&
scalar
)
{
data_
/=
scalar
;
return
(
*
this
);
...
...
@@ -242,7 +242,7 @@ namespace Dune {
/*! \brief Subtract the entries of another matrix from this one.
*
* \param b The matrix to
add to
this one. Its size has to
* \param b The matrix to
subtract from
this one. Its size has to
* be the same as the size of this matrix.
*/
Matrix
&
operator
-=
(
const
Matrix
&
b
)
{
...
...
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