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 @@ ...@@ -15,6 +15,7 @@
*/ */
template<class B, class TargetSpace> template<class B, class TargetSpace>
class GlobalGeodesicFEFunction class GlobalGeodesicFEFunction
: public VirtualGridViewFunction<typename B::GridView, TargetSpace>
{ {
public: public:
...@@ -37,6 +38,7 @@ public: ...@@ -37,6 +38,7 @@ public:
//! Create global function by a global basis and the corresponding coefficient vector //! Create global function by a global basis and the corresponding coefficient vector
GlobalGeodesicFEFunction(const Basis& basis, const std::vector<TargetSpace>& coefficients) : GlobalGeodesicFEFunction(const Basis& basis, const std::vector<TargetSpace>& coefficients) :
VirtualGridViewFunction<typename B::GridView, TargetSpace>(basis.getGridView()),
basis_(basis), basis_(basis),
coefficients_(coefficients) 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