Skip to content
Snippets Groups Projects
Commit 029100b3 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Inherit from VirtualGridViewFunction

[[Imported from SVN: r10032]]
parent 597950a3
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@
*/
template<class B, class TargetSpace>
class GlobalGeodesicFEFunction
: public VirtualGridViewFunction<typename B::GridView, TargetSpace>
{
public:
......@@ -37,6 +38,7 @@ public:
//! Create global function by a global basis and the corresponding coefficient vector
GlobalGeodesicFEFunction(const Basis& basis, const std::vector<TargetSpace>& coefficients) :
VirtualGridViewFunction<typename B::GridView, TargetSpace>(basis.getGridView()),
basis_(basis),
coefficients_(coefficients)
{}
......
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