Skip to content
Snippets Groups Projects
Commit 1f45c9e8 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[operators] adapt apply method to SpaceInterface changes, refs #14

parent bb433ef2
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ public:
template <class E, class D, int d, class R, int r, int rC, class T, class V>
void apply(const Stuff::LocalizableFunctionInterface<E, D, d, R, r, rC>& /*source*/,
DiscreteFunction<SpaceInterface<T>, V>& /*range*/) const
DiscreteFunction<SpaceInterface<T, d, r, rC>, V>& /*range*/) const
{
static_assert(Dune::AlwaysFalse<E>::value, "Not implemented for this combination of source and range!");
}
......
......@@ -81,7 +81,7 @@ public:
template <class E, class D, int d, class R, int r, int rC, class T, class V>
void apply(const Stuff::LocalizableFunctionInterface<E, D, d, R, r, rC>& /*source*/,
DiscreteFunction<SpaceInterface<T>, V>& /*range*/) const
DiscreteFunction<SpaceInterface<T, d, r, rC>, V>& /*range*/) const
{
static_assert(Dune::AlwaysFalse<E>::value, "Not implemented for this combination of source and range!");
}
......@@ -187,7 +187,7 @@ public:
template <class E, class D, int d, class R, int r, int rC, class T, class V>
void apply(const Stuff::LocalizableFunctionInterface<E, D, d, R, r, rC>& /*source*/,
DiscreteFunction<SpaceInterface<T>, V>& /*range*/) const
DiscreteFunction<SpaceInterface<T, d, r, rC>, V>& /*range*/) const
{
static_assert(Dune::AlwaysFalse<E>::value, "Not implemented for this combination of source and range!");
}
......@@ -411,7 +411,7 @@ public:
private:
template <class E, class D, int d, class R, int r, int rC, class T, class V>
void redirect_to_appropriate_operator(const Stuff::LocalizableFunctionInterface<E, D, d, R, r, rC>& /*source*/,
DiscreteFunction<SpaceInterface<T>, V>& /*range*/) const
DiscreteFunction<SpaceInterface<T, d, r, rC>, V>& /*range*/) const
{
static_assert(Dune::AlwaysFalse<E>::value,
"Could not find an appropriate operator for this combination of source and range!");
......
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