Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
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
Timo Koch
dune-common
Commits
441954b9
Commit
441954b9
authored
16 years ago
by
Martin Nolte
Browse files
Options
Downloads
Patches
Plain Diff
added operator>> for FieldVector
[[Imported from SVN: r5223]]
parent
3bed4c90
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
common/fvector.hh
+31
-1
31 additions, 1 deletion
common/fvector.hh
with
31 additions
and
1 deletion
common/fvector.hh
+
31
−
1
View file @
441954b9
...
...
@@ -683,7 +683,14 @@ namespace Dune {
K
p
[(
SIZE
>
0
)
?
SIZE
:
1
];
};
//! Send vector to output stream
/** \brief Write a FieldVector to an output stream
* \relates FieldVector
*
* \param[in] s std :: ostream to write to
* \param[in] v FieldVector to write
*
* \returns the output stream (s)
*/
template
<
typename
K
,
int
n
>
std
::
ostream
&
operator
<<
(
std
::
ostream
&
s
,
const
FieldVector
<
K
,
n
>&
v
)
{
...
...
@@ -692,6 +699,29 @@ namespace Dune {
return
s
;
}
/** \brief Read a FieldVector from an input stream
* \relates FieldVector
*
* \note This operator is STL compilant, i.e., the content of v is only
* changed if the read operation is successful.
*
* \param[in] in std :: istream to read from
* \param[out] v FieldVector to be read
*
* \returns the input stream (in)
*/
template
<
class
K
,
int
SIZE
>
inline
std
::
istream
&
operator
>>
(
std
::
istream
&
in
,
FieldVector
<
K
,
SIZE
>
&
v
)
{
FieldVector
<
K
,
SIZE
>
w
;
for
(
typename
FieldVector
<
K
,
SIZE
>
::
size_type
i
=
0
;
i
<
SIZE
;
++
i
)
in
>>
w
[
i
];
if
(
in
)
v
=
w
;
return
in
;
}
// forward declarations
template
<
class
K
,
int
n
,
int
m
>
class
FieldMatrix
;
...
...
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