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
d81fe462
Commit
d81fe462
authored
13 years ago
by
Martin Nolte
Browse files
Options
Downloads
Patches
Plain Diff
fix return type of operator[]
[[Imported from SVN: r1523]]
parent
f305e20d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/istl.tex
+4
-4
4 additions, 4 deletions
doc/istl.tex
with
4 additions
and
4 deletions
doc/istl.tex
+
4
−
4
View file @
d81fe462
...
...
@@ -196,8 +196,8 @@ V(\K) = V_1\times V_2 \times \ldots \times V_n.
\end{equation*}
The
$
V
_
i
$
can be
\textit
{
any
}
vector space over the field
$
\K
$
. The
dimension of
$
V
$
is the sum of the dimensions of the
$
V
_
i
$
. For a
a
mathematician every finite-dimensional vector space is isomorphic to
the
$
\R
^
k
$
for an appropriate
$
k
$
but in our applications it is
mathematician every finite-dimensional vector space is isomorphic to
the
$
\R
^
k
$
for an appropriate
$
k
$
,
but in our applications it is
important to know the difference between
$
(
\R
^
2
)
^
7
$
and
$
\R
^{
14
}$
. Having these remarks about vector spaces in mind we can now
turn to the class design.
...
...
@@ -315,8 +315,8 @@ in the section on memory management.
\texttt
{
X::operator=(X
\&
)
}
&
\texttt
{
X
\&
}
&
\\
\texttt
{
X::operator=(field
\_
type
\&
)
}
&
\texttt
{
X
\&
}
&
from scalar
\\
\hline
\texttt
{
X::operator[](int)
}
&
\texttt
{
field
\_
type
\&
}
&
\\
\texttt
{
X::operator[](int)
}
&
\texttt
{
const
field
\_
type
\&
}
&
\\
\texttt
{
X::operator[](int)
}
&
\texttt
{
block
\_
type
\&
}
&
\\
\texttt
{
X::operator[](int)
}
&
\texttt
{
const
block
\_
type
\&
}
&
\\
\texttt
{
X::begin()
}
&
\texttt
{
Iterator
}
&
\\
\texttt
{
X::end()
}
&
\texttt
{
Iterator
}
&
\\
\texttt
{
X::rbegin()
}
&
\texttt
{
Iterator
}
&
for reverse iteration
\\
...
...
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