Skip to content
Snippets Groups Projects
Commit e64a8d31 authored by Dr. Jorrit Fahlke's avatar Dr. Jorrit Fahlke
Browse files

Merge branch 'ci' into 'master'

Add CI config

Closes #1

See merge request jfahl_01/pacxx-projectseminar-2019!1
parents 1f6a89d2 f360ad11
No related branches found
No related tags found
1 merge request!1Add CI config
Pipeline #19313 passed
---
include:
- "https://gitlab.dune-project.org/core/ci-config/raw/master/config/common/master.yml"
- "https://gitlab.dune-project.org/core/ci-config/raw/master/jobs/common/master.yml"
before_script:
- . /duneci/bin/duneci-init-job
- duneci-install-module https://gitlab.dune-project.org/core/dune-common.git
- duneci-install-module https://gitlab.dune-project.org/core/dune-geometry.git
- duneci-install-module https://gitlab.dune-project.org/staging/dune-uggrid.git
- duneci-install-module https://gitlab.dune-project.org/core/dune-grid.git
- duneci-install-module https://gitlab.dune-project.org/core/dune-localfunctions.git
- duneci-install-module https://gitlab.dune-project.org/core/dune-istl.git
......@@ -85,14 +85,14 @@ namespace PPS {
// Volume integration
Dune::Hybrid::ifElse
(std::bool_constant<LocalOperator::doAlphaVolume>{},
(std::integral_constant<bool, LocalOperator::doAlphaVolume>{},
[&](auto id) {
id(lop_).jacobian_volume(element, lb, xl, al);
});
// Skip if no intersection iterator is needed
Dune::Hybrid::ifElse
(std::bool_constant<LocalOperator::doAlphaBoundary>{},
(std::integral_constant<bool, LocalOperator::doAlphaBoundary>{},
[&](auto id) {
// Traverse intersections
for(const auto& intersection : intersections(gv_,element))
......@@ -168,7 +168,7 @@ namespace PPS {
// Boundary integration
Dune::Hybrid::ifElse
(std::bool_constant<LocalOperator::doAlphaBoundary>{},
(std::integral_constant<bool, LocalOperator::doAlphaBoundary>{},
[&](auto id) {
id(lop_).alpha_boundary(intersection, lb, xl, rl);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment