Skip to content
Snippets Groups Projects
Commit 39b36f99 authored by Youett, Jonathan's avatar Youett, Jonathan Committed by akbib@FU-BERLIN.DE
Browse files

export the base coefficients

[[Imported from SVN: r7973]]
parent 39d2b367
No related branches found
No related tags found
No related merge requests found
......@@ -11,10 +11,11 @@
* The other LocalFiniteElement methods are not wrapped/implemented by now but it shouldn't be too difficult to do so when they are
* needed.
*/
template <class Basis, class TargetSpace, class CoefficientType>
template <class Basis, class TargetSpace, class C>
class GlobalGFETestFunctionBasis : public FunctionSpaceBasis<typename Basis::GridView, typename TargetSpace::EmbeddedTangentVector, LocalGfeTestFunctionFiniteElement<typename Basis::LocalFiniteElement, TargetSpace> > {
public:
typedef C CoefficientType;
typedef typename Basis::GridView GridView;
typedef LocalGfeTestFunctionFiniteElement<typename Basis::LocalFiniteElement, TargetSpace> LocalFiniteElement;
private:
......@@ -70,6 +71,11 @@ public:
return basis_.index(e,i);
}
/** \brief Get the base coefficients. */
const CoefficientType& getBaseCoefficients() const
{
return baseCoefficients_;
}
private:
//! The global basis determining the weights
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment