Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-fufem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Ansgar Burchardt
dune-fufem
Commits
0307228b
Commit
0307228b
authored
12 years ago
by
Uli Sack
Committed by
usack
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
elaborated on doc
[[Imported from SVN: r8400]]
parent
bc218c66
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/fufem/quadraturerules/quadraturerulecache.hh
+11
-3
11 additions, 3 deletions
dune/fufem/quadraturerules/quadraturerulecache.hh
with
11 additions
and
3 deletions
dune/fufem/quadraturerules/quadraturerulecache.hh
+
11
−
3
View file @
0307228b
...
...
@@ -37,7 +37,8 @@ class QuadratureRuleKey
/** \brief Constructor with given element type, order and refinement level
* \param order Order of the quadrature rule
* \param refinement For composite rules: number of subdivision steps of the original rule
* \param refinement For composite rules: number of subdivision steps of the original rule [DEFAULT = 0]
* \param lumping whether or not we have a lumped quadrule [DEFAULT = false]
*/
QuadratureRuleKey
(
const
Dune
::
GeometryType
&
gt
,
const
int
order
,
const
int
refinement
=
0
,
bool
lumping
=
false
)
:
gt_
(
gt
),
...
...
@@ -47,8 +48,10 @@ class QuadratureRuleKey
{}
/** \brief Constructor for rules to integrate analytical functions (i.e., not related to a grid)
* \param order Order of the quadrature rule
* \param refinement For composite rules: number of subdivision steps of the original rule
* \param dim dimension of domain
* \param order order of the quadrature rule
* \param refinement for composite rules: number of subdivision steps of the original rule [DEFAULT = 0]
* \param lumping whether or not we have a lumped quadrule [DEFAULT = false]
*/
QuadratureRuleKey
(
const
int
dim
,
const
int
order
,
const
int
refinement
=
0
,
bool
lumping
=
false
)
:
gt_
(
Dune
::
GeometryType
::
none
,
dim
),
...
...
@@ -57,6 +60,11 @@ class QuadratureRuleKey
lumping_
(
lumping
)
{}
/** \brief defines order relation on QuadratureRuleKeys
*
* \param other QuadratureRuleKey to compare with
* \returns true if passed QRKey is 'larger' than *this
*/
bool
operator
<
(
const
QuadratureRuleKey
&
other
)
const
{
if
(
gt_
<
other
.
gt_
)
...
...
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