Line | Branch | Exec | Source |
---|---|---|---|
1 | // -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- | ||
2 | // vi: set et ts=4 sw=4 sts=4: | ||
3 | // | ||
4 | // SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder | ||
5 | // SPDX-License-Identifier: GPL-3.0-or-later | ||
6 | // | ||
7 | /*! | ||
8 | * \file | ||
9 | * \ingroup EmbeddedCoupling | ||
10 | * \brief Coupling manager for embedded fractures | ||
11 | */ | ||
12 | |||
13 | #ifndef DUMUX_MULTIDOMAIN_EMBEDDED_COUPLINGMANAGER_2D3D_HH | ||
14 | #define DUMUX_MULTIDOMAIN_EMBEDDED_COUPLINGMANAGER_2D3D_HH | ||
15 | |||
16 | #include <dumux/multidomain/embedded/couplingmanagerbase.hh> | ||
17 | |||
18 | namespace Dumux { | ||
19 | |||
20 | /*! | ||
21 | * \ingroup EmbeddedCoupling | ||
22 | * \brief Coupling manager for embedded fractures | ||
23 | * \note we just use the default coupling manager | ||
24 | */ | ||
25 | template<class MDTraits> | ||
26 | 2 | class EmbeddedCouplingManager2d3d | |
27 | : public EmbeddedCouplingManagerBase<MDTraits, | ||
28 | EmbeddedCouplingManager2d3d<MDTraits>> | ||
29 | { | ||
30 | using ThisType = EmbeddedCouplingManager2d3d<MDTraits>; | ||
31 | using ParentType = EmbeddedCouplingManagerBase<MDTraits, ThisType>; | ||
32 | public: | ||
33 |
1/2✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
|
2 | using ParentType::ParentType; |
34 | }; | ||
35 | |||
36 | //! we support multithreaded assembly | ||
37 | template<class MDTraits> | ||
38 | struct CouplingManagerSupportsMultithreadedAssembly<EmbeddedCouplingManager2d3d<MDTraits>> | ||
39 | : public std::true_type {}; | ||
40 | |||
41 | } // end namespace Dumux | ||
42 | |||
43 | #endif | ||
44 |