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
29b474d9
Commit
29b474d9
authored
20 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
hide operator=(...) in YaspGeometry
[[Imported from SVN: r1625]]
parent
f0807b88
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
grid/yaspgrid.hh
+18
-39
18 additions, 39 deletions
grid/yaspgrid.hh
with
18 additions
and
39 deletions
grid/yaspgrid.hh
+
18
−
39
View file @
29b474d9
...
...
@@ -287,17 +287,6 @@ namespace Dune {
s
<<
" "
<<
extension
[
i
];
s
<<
" missing is "
<<
missing
;
}
private
:
const
YaspGeometry
<
mydim
,
cdim
,
GridImp
>&
operator
=
(
const
YaspGeometry
<
mydim
,
cdim
,
GridImp
>&
g
)
{
midpoint
=
g
.
midpoint
;
extension
=
g
.
extension
;
missing
=
g
.
missing
;
c
=
g
.
c
;
return
*
this
;
}
private
:
// the element is fully defined by its midpoint the extension
// in each direction and the missing direction.
...
...
@@ -305,8 +294,8 @@ namespace Dune {
// is known outside the element in many cases.
// Note cdim==cdim+1
// IMPORTANT midpoint and extension
can't b
e references,
//
because they must stay the same when the iterator changes
// IMPORTANT midpoint and extension
ar
e references,
//
YaspGeometry can't be copied
const
FieldVector
<
ctype
,
cdim
>
&
midpoint
;
// the midpoint
const
FieldVector
<
ctype
,
cdim
>
&
extension
;
// the extension
int
&
missing
;
// the missing, i.e. constant direction
...
...
@@ -314,6 +303,10 @@ namespace Dune {
// In addition we need memory in order to return references.
// Possibly we should change this in the interface ...
mutable
FieldVector
<
ctype
,
cdim
>
c
;
// a point
const
YaspGeometry
<
mydim
,
cdim
,
GridImp
>&
operator
=
(
const
YaspGeometry
<
mydim
,
cdim
,
GridImp
>&
g
);
};
...
...
@@ -431,29 +424,14 @@ namespace Dune {
s
<<
" "
<<
extension
[
i
];
}
const
YaspGeometry
<
mydim
,
mydim
,
GridImp
>&
operator
=
(
const
YaspGeometry
<
mydim
,
mydim
,
GridImp
>&
g
)
{
// check that the const data is the same
for
(
int
d
=
0
;
d
<
mydim
;
d
++
)
{
assert
(
midpoint
[
d
]
==
g
.
midpoint
[
d
]);
assert
(
extension
[
d
]
==
g
.
extension
[
d
]);
}
// update the mutable data
Jinv
=
g
.
Jinv
;
c
=
g
.
c
;
return
*
this
;
}
private
:
// the element is fully defined by midpoint and the extension
// in each direction. References are used because this information
// is known outside the element in many cases.
// Note mydim==cdim
// IMPORTANT midpoint and extension
can't b
e references,
//
because they must stay the same when the iterator changes
// IMPORTANT midpoint and extension
ar
e references,
//
YaspGeometry can't be copied
const
FieldVector
<
ctype
,
mydim
>
&
midpoint
;
// the midpoint
const
FieldVector
<
ctype
,
mydim
>
&
extension
;
// the extension
...
...
@@ -461,6 +439,10 @@ namespace Dune {
// Possibly we should change this in the interface ...
mutable
FieldMatrix
<
ctype
,
mydim
,
mydim
>
Jinv
;
// the jacobian inverse
mutable
FieldVector
<
ctype
,
mydim
>
c
;
// a point
// disable copy
const
YaspGeometry
<
mydim
,
mydim
,
GridImp
>&
operator
=
(
const
YaspGeometry
<
mydim
,
mydim
,
GridImp
>&
g
);
};
...
...
@@ -501,18 +483,14 @@ namespace Dune {
s
<<
"YaspGeometry<"
<<
0
<<
","
<<
cdim
<<
"> "
;
s
<<
"position "
<<
position
;
}
private
:
const
YaspGeometry
<
0
,
cdim
,
GridImp
>&
operator
=
(
const
YaspGeometry
<
0
,
cdim
,
GridImp
>&
g
)
{
position
=
g
.
position
;
return
*
this
;
}
private
:
// IMPORTANT position
can't be
reference
s
,
//
because they must stay the same when the iterator changes
// IMPORTANT position
is a
reference,
//
YaspGeometry can't be copied
const
FieldVector
<
ctype
,
cdim
>
&
position
;
//!< where the vertex is
const
YaspGeometry
<
0
,
cdim
,
GridImp
>&
operator
=
(
const
YaspGeometry
<
0
,
cdim
,
GridImp
>&
g
);
};
// operator<< for all YaspGeometrys
...
...
@@ -720,6 +698,7 @@ namespace Dune {
son
+=
(
1
<<
k
);
// access to one of the 2**dim predefined elements
DUNE_THROW
(
NotImplemented
,
""
);
#if 0
return YaspFatherRelativeLocalElement<dim>::getson(son);
#endif
...
...
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