1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
// SPDX-FileCopyrightText: Copyright © DUNE Project contributors, see file AUTHORS.md
// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception OR LGPL-3.0-or-later
#ifndef DUNE_FUNCTIONS_GRIDFUNCTIONS_GRID_FUNCTION_IMP_HH
#define DUNE_FUNCTIONS_GRIDFUNCTIONS_GRID_FUNCTION_IMP_HH
#include <dune/functions/common/type_traits.hh>
#include <dune/functions/common/interfaces.hh>
#include <dune/functions/common/differentiablefunction_imp.hh>
namespace Dune {
namespace Functions {
namespace Imp {
/**
* A concept describing types that have a localFunction() method found by ADL
*/
struct HasFreeLocalFunction
{
template<class F>
auto require(F&& f) -> decltype(
localFunction(f)
);
};
// Interface of type erasure wrapper
//
// Notice that the basic interface of polymorphic classes (destructor, clone, ...)
// will be added by the type erasure foundation classes.
template<class Signature, class DerivativeInterface, class LocalFunctionInterface, class EntitySet>
class GridFunctionWrapperInterface :
public DifferentiableFunctionWrapperInterface<Signature, DerivativeInterface>
{
public:
virtual LocalFunctionInterface wrappedLocalFunction() const = 0;
virtual const EntitySet& wrappedEntitySet() const = 0;
};
// Implementation of type erasure wrapper
template<class Signature, class DerivativeInterface, class LocalFunctionInterface, class EntitySet, class B>
class GridFunctionWrapperImplementation :
public DifferentiableFunctionWrapperImplementation<Signature, DerivativeInterface, B>
{
using Base = DifferentiableFunctionWrapperImplementation<Signature, DerivativeInterface, B>;
public:
using Base::Base;
virtual LocalFunctionInterface wrappedLocalFunction() const
{
return localFunction(this->get());
}
virtual const EntitySet& wrappedEntitySet() const
{
return this->get().entitySet();
}
};
}}} // namespace Dune::Functions::Imp
#endif // DUNE_FUNCTIONS_GRIDFUNCTIONS_GRID_FUNCTION_IMP_HH
|