Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-xt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
ag-ohlberger
dune-community
dune-xt
Commits
9f4f7303
Commit
9f4f7303
authored
6 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[interfaces.grid-function] add ctor and fix doc
parent
0fdf730d
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
dune/xt/functions/interfaces/grid-function.hh
+6
-1
6 additions, 1 deletion
dune/xt/functions/interfaces/grid-function.hh
with
6 additions
and
1 deletion
dune/xt/functions/interfaces/grid-function.hh
+
6
−
1
View file @
9f4f7303
...
@@ -65,7 +65,7 @@ class ProductGridFunction;
...
@@ -65,7 +65,7 @@ class ProductGridFunction;
*
*
* We follow one strong assumption in dune-xt-functions: after being localized to an element, a local function
* We follow one strong assumption in dune-xt-functions: after being localized to an element, a local function
* (or a set of local functions) has to provide the order which is required to integrate it _exactly_ on this
* (or a set of local functions) has to provide the order which is required to integrate it _exactly_ on this
* element, and it _should_ thus coincide with polynomial of respective on an element. While there exists
* element, and it _should_ thus coincide with
a
polynomial of respective
order
on an element. While there exists
* non-polynomial data functions, we only have quadratures of finite order and no way to detect
* non-polynomial data functions, we only have quadratures of finite order and no way to detect
* discontinuities of functions (thus the order of the local polynomial approximation must be provided). This
* discontinuities of functions (thus the order of the local polynomial approximation must be provided). This
* encourages the user to really think about the data functions when implementing/using them, but avoids
* encourages the user to really think about the data functions when implementing/using them, but avoids
...
@@ -98,6 +98,11 @@ public:
...
@@ -98,6 +98,11 @@ public:
using
DifferenceType
=
Functions
::
DifferenceGridFunction
<
ThisType
,
ThisType
>
;
using
DifferenceType
=
Functions
::
DifferenceGridFunction
<
ThisType
,
ThisType
>
;
using
SumType
=
Functions
::
SumGridFunction
<
ThisType
,
ThisType
>
;
using
SumType
=
Functions
::
SumGridFunction
<
ThisType
,
ThisType
>
;
GridFunctionInterface
(
const
Common
::
ParameterType
&
param_type
=
{})
:
Common
::
ParametricInterface
(
param_type
)
{
}
virtual
~
GridFunctionInterface
()
=
default
;
virtual
~
GridFunctionInterface
()
=
default
;
static
std
::
string
static_id
()
static
std
::
string
static_id
()
...
...
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