Skip to content
Snippets Groups Projects
Commit ba043595 authored by Kilian Weishaupt's avatar Kilian Weishaupt Committed by Timo Koch
Browse files

[test][embedded] Remove unused setCouplingManager()

parent 733e6980
No related branches found
No related tags found
1 merge request!1285Cleanup/md remove setcouplingmgr
...@@ -325,10 +325,6 @@ public: ...@@ -325,10 +325,6 @@ public:
vtk.addField(this->spatialParams().getRadii(), "radius"); vtk.addField(this->spatialParams().getRadii(), "radius");
} }
//! Set the coupling manager
void setCouplingManager(std::shared_ptr<CouplingManager> cm)
{ couplingManager_ = cm; }
//! Get the coupling manager //! Get the coupling manager
const CouplingManager& couplingManager() const const CouplingManager& couplingManager() const
{ return *couplingManager_; } { return *couplingManager_; }
......
...@@ -315,10 +315,6 @@ public: ...@@ -315,10 +315,6 @@ public:
return priVars; return priVars;
} }
//! Set the coupling manager
void setCouplingManager(std::shared_ptr<CouplingManager> cm)
{ couplingManager_ = cm; }
//! Get the coupling manager //! Get the coupling manager
const CouplingManager& couplingManager() const const CouplingManager& couplingManager() const
{ return *couplingManager_; } { return *couplingManager_; }
......
...@@ -356,10 +356,6 @@ public: ...@@ -356,10 +356,6 @@ public:
vtk.addField(exactPressure_, "exact pressure"); vtk.addField(exactPressure_, "exact pressure");
} }
//! Set the coupling manager
void setCouplingManager(std::shared_ptr<CouplingManager> cm)
{ couplingManager_ = cm; }
//! Get the coupling manager //! Get the coupling manager
const CouplingManager& couplingManager() const const CouplingManager& couplingManager() const
{ return *couplingManager_; } { return *couplingManager_; }
......
...@@ -405,10 +405,6 @@ public: ...@@ -405,10 +405,6 @@ public:
vtk.addField(exactPressure_, "exact pressure"); vtk.addField(exactPressure_, "exact pressure");
} }
//! Set the coupling manager
void setCouplingManager(std::shared_ptr<CouplingManager> cm)
{ couplingManager_ = cm; }
//! Get the coupling manager //! Get the coupling manager
const CouplingManager& couplingManager() const const CouplingManager& couplingManager() const
{ return *couplingManager_; } { return *couplingManager_; }
......
...@@ -311,10 +311,6 @@ public: ...@@ -311,10 +311,6 @@ public:
vtk.addField(this->spatialParams().getRadii(), "radius"); vtk.addField(this->spatialParams().getRadii(), "radius");
} }
//! Set the coupling manager
void setCouplingManager(std::shared_ptr<CouplingManager> cm)
{ couplingManager_ = cm; }
//! Get the coupling manager //! Get the coupling manager
const CouplingManager& couplingManager() const const CouplingManager& couplingManager() const
{ return *couplingManager_; } { return *couplingManager_; }
......
...@@ -259,10 +259,6 @@ public: ...@@ -259,10 +259,6 @@ public:
} }
//! Set the coupling manager
void setCouplingManager(std::shared_ptr<CouplingManager> cm)
{ couplingManager_ = cm; }
//! Get the coupling manager //! Get the coupling manager
const CouplingManager& couplingManager() const const CouplingManager& couplingManager() const
{ return *couplingManager_; } { return *couplingManager_; }
......
...@@ -283,10 +283,6 @@ public: ...@@ -283,10 +283,6 @@ public:
std::cout << "Global integrated source (1D): " << source << '\n'; std::cout << "Global integrated source (1D): " << source << '\n';
} }
//! Set the coupling manager
void setCouplingManager(std::shared_ptr<CouplingManager> cm)
{ couplingManager_ = cm; }
//! Get the coupling manager //! Get the coupling manager
const CouplingManager& couplingManager() const const CouplingManager& couplingManager() const
{ return *couplingManager_; } { return *couplingManager_; }
......
...@@ -259,10 +259,6 @@ public: ...@@ -259,10 +259,6 @@ public:
std::cout << "Global integrated source (3D): " << source << '\n'; std::cout << "Global integrated source (3D): " << source << '\n';
} }
//! Set the coupling manager
void setCouplingManager(std::shared_ptr<CouplingManager> cm)
{ couplingManager_ = cm; }
//! Get the coupling manager //! Get the coupling manager
const CouplingManager& couplingManager() const const CouplingManager& couplingManager() const
{ return *couplingManager_; } { return *couplingManager_; }
......
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