Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions include/systems/equation_systems.h
Original file line number Diff line number Diff line change
Expand Up @@ -326,20 +326,6 @@ class EquationSystems : public ReferenceCountedObject<EquationSystems>,
void get_vars_active_subdomains(const std::vector<std::string> & names,
std::vector<std::set<subdomain_id_type>> & vars_active_subdomains) const;

#ifdef LIBMESH_ENABLE_DEPRECATED
/**
* Retrieve the solution data for CONSTANT MONOMIALs and/or components of
* CONSTANT MONOMIAL_VECs. If 'names' is populated, only the variables
* corresponding to those names will be retrieved. This can be used to
* filter which variables are retrieved.
*
* \deprecated Call the more appropriately-named build_elemental_solution_vector()
* instead.
*/
void get_solution (std::vector<Number> & soln,
std::vector<std::string> & names) const;
#endif // LIBMESH_ENABLE_DEPRECATED

/**
* Retrieve the solution data for CONSTANT MONOMIALs and/or components of
* CONSTANT MONOMIAL_VECs. If 'names' is populated, only the variables
Expand Down
11 changes: 0 additions & 11 deletions src/systems/equation_systems.C
Original file line number Diff line number Diff line change
Expand Up @@ -1012,17 +1012,6 @@ void EquationSystems::get_vars_active_subdomains(const std::vector<std::string>



#ifdef LIBMESH_ENABLE_DEPRECATED
void EquationSystems::get_solution (std::vector<Number> & soln,
std::vector<std::string> & names) const
{
libmesh_deprecated();
this->build_elemental_solution_vector(soln, names);
}
#endif // LIBMESH_ENABLE_DEPRECATED



void
EquationSystems::build_elemental_solution_vector (std::vector<Number> & soln,
std::vector<std::string> & names) const
Expand Down