EquationTags: remove unused function

master
Sébastien Villemot 2023-01-04 16:00:39 +01:00
parent df3a153356
commit 422cbf5736
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 8 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright © 2020-2022 Dynare Team
* Copyright © 2020-2023 Dynare Team
*
* This file is part of Dynare.
*
@ -125,13 +125,6 @@ public:
return exists(eqn) && eqn_tags.at(eqn).contains(key);
}
//! Returns true if equation tag with key and value exists for a given equation
bool
exists(const int eqn, const string &key, const string &value) const
{
return exists(eqn, key) && eqn_tags.at(eqn).at(key) == value;
}
//! Various functions to write equation tags
void writeCheckSumInfo(ostream &output) const;
void writeOutput(ostream &output) const;