From ba04359574c21fd881792c36363cd6bad7f61cbf Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Mon, 12 Nov 2018 20:30:56 +0100 Subject: [PATCH] [test][embedded] Remove unused setCouplingManager() --- .../multidomain/embedded/1d3d/1p2c_richards2c/problem_root.hh | 4 ---- .../multidomain/embedded/1d3d/1p2c_richards2c/problem_soil.hh | 4 ---- test/multidomain/embedded/1d3d/1p_1p/problem_bloodflow.hh | 4 ---- test/multidomain/embedded/1d3d/1p_1p/problem_tissue.hh | 4 ---- test/multidomain/embedded/1d3d/1p_richards/problem_root.hh | 4 ---- test/multidomain/embedded/1d3d/1p_richards/problem_soil.hh | 4 ---- test/multidomain/embedded/2d3d/1p_1p/problem_fracture.hh | 4 ---- test/multidomain/embedded/2d3d/1p_1p/problem_matrix.hh | 4 ---- 8 files changed, 32 deletions(-) diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_root.hh b/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_root.hh index b0b2344218..02273c5f6c 100644 --- a/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_root.hh +++ b/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_root.hh @@ -325,10 +325,6 @@ public: vtk.addField(this->spatialParams().getRadii(), "radius"); } - //! Set the coupling manager - void setCouplingManager(std::shared_ptr<CouplingManager> cm) - { couplingManager_ = cm; } - //! Get the coupling manager const CouplingManager& couplingManager() const { return *couplingManager_; } diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_soil.hh b/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_soil.hh index ba82e7a42b..c44c4115ff 100644 --- a/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_soil.hh +++ b/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_soil.hh @@ -315,10 +315,6 @@ public: return priVars; } - //! Set the coupling manager - void setCouplingManager(std::shared_ptr<CouplingManager> cm) - { couplingManager_ = cm; } - //! Get the coupling manager const CouplingManager& couplingManager() const { return *couplingManager_; } diff --git a/test/multidomain/embedded/1d3d/1p_1p/problem_bloodflow.hh b/test/multidomain/embedded/1d3d/1p_1p/problem_bloodflow.hh index 62fb5fc16f..4a97e6b552 100644 --- a/test/multidomain/embedded/1d3d/1p_1p/problem_bloodflow.hh +++ b/test/multidomain/embedded/1d3d/1p_1p/problem_bloodflow.hh @@ -356,10 +356,6 @@ public: vtk.addField(exactPressure_, "exact pressure"); } - //! Set the coupling manager - void setCouplingManager(std::shared_ptr<CouplingManager> cm) - { couplingManager_ = cm; } - //! Get the coupling manager const CouplingManager& couplingManager() const { return *couplingManager_; } diff --git a/test/multidomain/embedded/1d3d/1p_1p/problem_tissue.hh b/test/multidomain/embedded/1d3d/1p_1p/problem_tissue.hh index d47d0231b9..82c4739470 100644 --- a/test/multidomain/embedded/1d3d/1p_1p/problem_tissue.hh +++ b/test/multidomain/embedded/1d3d/1p_1p/problem_tissue.hh @@ -405,10 +405,6 @@ public: vtk.addField(exactPressure_, "exact pressure"); } - //! Set the coupling manager - void setCouplingManager(std::shared_ptr<CouplingManager> cm) - { couplingManager_ = cm; } - //! Get the coupling manager const CouplingManager& couplingManager() const { return *couplingManager_; } diff --git a/test/multidomain/embedded/1d3d/1p_richards/problem_root.hh b/test/multidomain/embedded/1d3d/1p_richards/problem_root.hh index 31f08030d5..9bcbf36b47 100644 --- a/test/multidomain/embedded/1d3d/1p_richards/problem_root.hh +++ b/test/multidomain/embedded/1d3d/1p_richards/problem_root.hh @@ -311,10 +311,6 @@ public: vtk.addField(this->spatialParams().getRadii(), "radius"); } - //! Set the coupling manager - void setCouplingManager(std::shared_ptr<CouplingManager> cm) - { couplingManager_ = cm; } - //! Get the coupling manager const CouplingManager& couplingManager() const { return *couplingManager_; } diff --git a/test/multidomain/embedded/1d3d/1p_richards/problem_soil.hh b/test/multidomain/embedded/1d3d/1p_richards/problem_soil.hh index 0354251e3d..477c62f6d1 100644 --- a/test/multidomain/embedded/1d3d/1p_richards/problem_soil.hh +++ b/test/multidomain/embedded/1d3d/1p_richards/problem_soil.hh @@ -259,10 +259,6 @@ public: } - //! Set the coupling manager - void setCouplingManager(std::shared_ptr<CouplingManager> cm) - { couplingManager_ = cm; } - //! Get the coupling manager const CouplingManager& couplingManager() const { return *couplingManager_; } diff --git a/test/multidomain/embedded/2d3d/1p_1p/problem_fracture.hh b/test/multidomain/embedded/2d3d/1p_1p/problem_fracture.hh index 99720a91df..7d659c20fe 100644 --- a/test/multidomain/embedded/2d3d/1p_1p/problem_fracture.hh +++ b/test/multidomain/embedded/2d3d/1p_1p/problem_fracture.hh @@ -283,10 +283,6 @@ public: 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 const CouplingManager& couplingManager() const { return *couplingManager_; } diff --git a/test/multidomain/embedded/2d3d/1p_1p/problem_matrix.hh b/test/multidomain/embedded/2d3d/1p_1p/problem_matrix.hh index 812f891dcf..56bec44a92 100644 --- a/test/multidomain/embedded/2d3d/1p_1p/problem_matrix.hh +++ b/test/multidomain/embedded/2d3d/1p_1p/problem_matrix.hh @@ -259,10 +259,6 @@ public: 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 const CouplingManager& couplingManager() const { return *couplingManager_; } -- GitLab