Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
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
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
Sander, Oliver
dune-gfe
Commits
9815523e
There was a problem fetching the pipeline summary.
Commit
9815523e
authored
6 years ago
by
Sander, Oliver
Browse files
Options
Downloads
Patches
Plain Diff
Minor documentation fixes
parent
3aabf8b1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/gfe/symmetricmatrix.hh
+3
-6
3 additions, 6 deletions
dune/gfe/symmetricmatrix.hh
with
3 additions
and
6 deletions
dune/gfe/symmetricmatrix.hh
+
3
−
6
View file @
9815523e
...
@@ -23,10 +23,7 @@ public:
...
@@ -23,10 +23,7 @@ public:
enum
{
blocklevel
=
0
};
enum
{
blocklevel
=
0
};
/** \brief Default constructor
/** \brief Default constructor, creates uninitialized matrix
*
* Tensor is initialized containing zeros if no argument is given.
* \param eye if true tensor is initialized as identity
*/
*/
SymmetricMatrix
()
SymmetricMatrix
()
{}
{}
...
@@ -47,7 +44,7 @@ public:
...
@@ -47,7 +44,7 @@ public:
* \param i line index
* \param i line index
* \param j column index
* \param j column index
* \note You need to know what you are doing: You can only access the lower
* \note You need to know what you are doing: You can only access the lower
* left triangular submatrix using this methods. It requires i
<
=j.
* left triangular submatrix using this methods. It requires i
>
=j.
*/
*/
T
&
operator
()
(
int
i
,
int
j
)
T
&
operator
()
(
int
i
,
int
j
)
{
{
...
@@ -59,7 +56,7 @@ public:
...
@@ -59,7 +56,7 @@ public:
* \param i line index
* \param i line index
* \param j column index
* \param j column index
* \note You need to know what you are doing: You can only access the lower
* \note You need to know what you are doing: You can only access the lower
* left triangular submatrix using this methods. It requires i
<
=j.
* left triangular submatrix using this methods. It requires i
>
=j.
*/
*/
const
T
&
operator
()
(
int
i
,
int
j
)
const
const
T
&
operator
()
(
int
i
,
int
j
)
const
{
{
...
...
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