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
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
Patrick Jaap
dune-istl
Commits
1915615e
Commit
1915615e
authored
20 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
K11Matrix::operator() is deprecated now
[[Imported from SVN: r133]]
parent
bc3a7648
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
istl/fmatrix.hh
+10
-10
10 additions, 10 deletions
istl/fmatrix.hh
with
10 additions
and
10 deletions
istl/fmatrix.hh
+
10
−
10
View file @
1915615e
...
...
@@ -1115,7 +1115,7 @@ namespace Dune {
}
/**
! Matrices of size 1x1 are treated in a special way
/**
\brief Special type for 1x1 matrices
*/
template
<
class
K
>
class
K11Matrix
...
...
@@ -1140,13 +1140,13 @@ namespace Dune {
//===== random access interface to rows of the matrix
//! random access to data
K
&
operator
()
()
K
&
operator
()
()
DUNE_DEPRECATED
{
return
a
;
}
//! same for read only access
const
K
&
operator
()
()
const
const
K
&
operator
()
()
const
DUNE_DEPRECATED
{
return
a
;
}
...
...
@@ -1162,16 +1162,16 @@ namespace Dune {
//===== vector space arithmetic
//! vector space addition
K11Matrix
&
operator
+=
(
const
K
11Matrix
&
y
)
K11Matrix
&
operator
+=
(
const
K
&
y
)
{
a
+=
y
.
a
;
a
+=
y
;
return
*
this
;
}
//! vector space subtraction
K11Matrix
&
operator
-=
(
const
K
11Matrix
&
y
)
K11Matrix
&
operator
-=
(
const
K
&
y
)
{
a
-=
y
.
a
;
a
-=
y
;
return
*
this
;
}
...
...
@@ -1340,10 +1340,10 @@ namespace Dune {
//===== query
// return true when (i,j) is in pattern
//
!
return true when (i,j) is in pattern
bool
exists
(
int
i
,
int
j
)
const
{
return
true
;
return
i
==
0
&&
j
==
0
;
}
//===== conversion operator
...
...
@@ -1351,7 +1351,7 @@ namespace Dune {
operator
K
()
const
{
return
a
;}
private
:
// the data,
very simply a built in array with rowwise ordering
// the data,
just a single scalar
K
a
;
};
...
...
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