Skip to content
Snippets Groups Projects
Commit 8f70eba4 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[cleanup]Remove base class Dune::VirtualFunction

Here we derived from `BoundarySegment` and additionally
from `VirtualFunction`. I cannot see any reason for the
latter. Hence we can remove this as base class to avoid
a deprecation warning.
parent 94cc8e56
No related branches found
No related tags found
1 merge request!143[cleanup]Avoid deprecated interfaces from the core modules
Pipeline #59433 passed
......@@ -52,8 +52,7 @@ public:
/** \brief Class implementing a spherical triangular segment */
class SphereTriSegment
: public Dune::VirtualFunction<Dune::FieldVector<double,2>,Dune::FieldVector<double,3> >,
public Dune::BoundarySegment<3>
: public Dune::BoundarySegment<3>
{
public:
SphereTriSegment(const Dune::FieldVector<double,3>& a,
......@@ -80,11 +79,6 @@ public:
return result;
}
virtual void evaluate(const Dune::FieldVector<double,2>& local, Dune::FieldVector<double, 3>& global) const
{
global = operator()(local);
}
Dune::FieldVector<double, 3> a_, b_, c_;
Dune::FieldVector<double, 3> center_;
......
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