Skip to content
Snippets Groups Projects
Verified Commit 89a1a4d2 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Remove unused function

parent 5ff503a9
Branches
No related tags found
No related merge requests found
......@@ -862,14 +862,6 @@ SymbolTable::isAuxiliaryVariable(int symb_id) const
return any_of(aux_vars.begin(), aux_vars.end(), [=](const auto &av) { return av.symb_id == symb_id; });
}
bool
SymbolTable::isAuxiliaryVariableButNotMultiplier(int symb_id) const
{
return any_of(aux_vars.begin(), aux_vars.end(),
[=](const auto &av)
{ return av.symb_id == symb_id && av.type != AuxVarType::multiplier; });
}
bool
SymbolTable::isDiffAuxiliaryVariable(int symb_id) const
{
......
/*
* Copyright © 2003-2022 Dynare Team
* Copyright © 2003-2023 Dynare Team
*
* This file is part of Dynare.
*
......@@ -391,8 +391,6 @@ public:
set <int> getEndogenous() const;
//! Is a given symbol an auxiliary variable
bool isAuxiliaryVariable(int symb_id) const;
//! Is a given symbol an auxiliary variable but not a Lagrange multiplier
bool isAuxiliaryVariableButNotMultiplier(int symb_id) const;
//! Is a given symbol a diff, diff lead, or diff lag auxiliary variable
bool isDiffAuxiliaryVariable(int symb_id) const;
//! Get list of endogenous variables without aux vars
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment