Skip to content
Snippets Groups Projects
Commit 353c9268 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[PL] expose DOF table

parent cc34f35e
No related branches found
No related tags found
No related merge requests found
...@@ -28,17 +28,17 @@ struct ExtrapolatorData ...@@ -28,17 +28,17 @@ struct ExtrapolatorData
ExtrapolatorData() = default; ExtrapolatorData() = default;
ExtrapolatorData( ExtrapolatorData(
std::unique_ptr<NumLib::Extrapolator>&& extrapolator_, std::unique_ptr<NumLib::Extrapolator>&& extrapolator,
NumLib::LocalToGlobalIndexMap const* const dof_table_single_component, NumLib::LocalToGlobalIndexMap const* const dof_table_single_component,
bool const manage_storage) bool const manage_storage)
: extrapolator(std::move(extrapolator_)) : _extrapolator(std::move(extrapolator))
, _dof_table_single_component(dof_table_single_component) , _dof_table_single_component(dof_table_single_component)
, _manage_storage(manage_storage) , _manage_storage(manage_storage)
{ {
} }
ExtrapolatorData(ExtrapolatorData&& other) ExtrapolatorData(ExtrapolatorData&& other)
: extrapolator(std::move(other.extrapolator)) : _extrapolator(std::move(other._extrapolator))
, _dof_table_single_component(other._dof_table_single_component) , _dof_table_single_component(other._dof_table_single_component)
, _manage_storage(other._manage_storage) , _manage_storage(other._manage_storage)
{ {
...@@ -51,12 +51,17 @@ struct ExtrapolatorData ...@@ -51,12 +51,17 @@ struct ExtrapolatorData
cleanup(); cleanup();
_manage_storage = other._manage_storage; _manage_storage = other._manage_storage;
_dof_table_single_component = other._dof_table_single_component; _dof_table_single_component = other._dof_table_single_component;
extrapolator = std::move(other.extrapolator); _extrapolator = std::move(other._extrapolator);
return *this; return *this;
} }
NumLib::LocalToGlobalIndexMap const& getDOFTable() const
{
return *_dof_table_single_component;
}
NumLib::Extrapolator& getExtrapolator() const { return *_extrapolator; }
~ExtrapolatorData() { cleanup(); } ~ExtrapolatorData() { cleanup(); }
std::unique_ptr<NumLib::Extrapolator> extrapolator;
private: private:
void cleanup() void cleanup()
...@@ -66,6 +71,7 @@ private: ...@@ -66,6 +71,7 @@ private:
} }
} }
std::unique_ptr<NumLib::Extrapolator> _extrapolator;
NumLib::LocalToGlobalIndexMap const* _dof_table_single_component = nullptr; NumLib::LocalToGlobalIndexMap const* _dof_table_single_component = nullptr;
bool _manage_storage = false; bool _manage_storage = false;
}; };
......
...@@ -87,9 +87,14 @@ public: ...@@ -87,9 +87,14 @@ public:
} }
protected: protected:
NumLib::Extrapolator& getExtrapolator() NumLib::Extrapolator& getExtrapolator() const
{ {
return *_extrapolator_data.extrapolator; return _extrapolator_data.getExtrapolator();
}
NumLib::LocalToGlobalIndexMap const& getSingleComponentDOFTable() const
{
return _extrapolator_data.getDOFTable();
} }
private: private:
......
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