Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-geometry
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Core Modules
dune-geometry
Merge requests
!198
Replace enum with constexpr static
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Replace enum with constexpr static
ansgar/dune-geometry:replace-enum-with-constexpr-static
into
master
Overview
0
Commits
2
Pipelines
1
Changes
21
Merged
Ansgar Burchardt
requested to merge
ansgar/dune-geometry:replace-enum-with-constexpr-static
into
master
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
21
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6c76d9a8
2 commits,
2 years ago
21 files
+
47
−
46
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
21
Search (e.g. *.vue) (Ctrl+P)
doc/refinement/refinement.tex
+
2
−
2
Options
@@ -143,11 +143,11 @@ calculation with the same precision as the grid itself.
template<NewGeometryType::BasicType geometryType,
class CoordType,
NewGeometryType::BasicType coerceTo,
int dimension>
int dimension
_
>
class Refinement
{
public:
enum
{
dimension
}
;
constexpr static int dimension =
dimension
_
;
template<int codimension>
struct Codim
{
Loading