Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
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
amdis
amdis-core
Commits
473aa0cf
Commit
473aa0cf
authored
9 months ago
by
Maik Porrmann
Browse files
Options
Downloads
Patches
Plain Diff
Use provided localFctOrder of nonneg.
parent
c0166a44
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
amdis/Integrate.hpp
+3
-2
3 additions, 2 deletions
amdis/Integrate.hpp
with
3 additions
and
2 deletions
amdis/Integrate.hpp
+
3
−
2
View file @
473aa0cf
...
...
@@ -29,8 +29,9 @@ namespace AMDiS
using
LF
=
TYPEOF
(
localFct
);
auto
quadOrder
=
[
localFctOrder
](
auto
const
&
lf
)
{
DUNE_UNUSED_PARAMETER
(
localFctOrder
);
if
constexpr
(
Concepts
::
Polynomial
<
LF
>
)
if
(
localFctOrder
>=
0
)
return
localFctOrder
;
else
if
constexpr
(
Concepts
::
Polynomial
<
LF
>
)
return
order
(
lf
);
else
return
localFctOrder
;
...
...
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