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

Improve comment

parent 4da901d0
Branches
No related tags found
No related merge requests found
...@@ -87,12 +87,10 @@ private: ...@@ -87,12 +87,10 @@ private:
//! Maximum lag and lead over deterministic exogenous variables (positive values) of original model //! Maximum lag and lead over deterministic exogenous variables (positive values) of original model
int max_exo_det_lag_orig{0}, max_exo_det_lead_orig{0}; int max_exo_det_lag_orig{0}, max_exo_det_lead_orig{0};
//! Cross reference information // Cross reference information: eq → set of (symb_id, lag) for each symbol type
map<int, ExprNode::EquationInfo> xrefs; map<int, ExprNode::EquationInfo> xrefs;
map<pair<int, int>, set<int>> xref_param; // Reverse cross reference information: (symb_id, lag) → eqs
map<pair<int, int>, set<int>> xref_endo; map<pair<int, int>, set<int>> xref_param, xref_endo, xref_exo, xref_exo_det;
map<pair<int, int>, set<int>> xref_exo;
map<pair<int, int>, set<int>> xref_exo_det;
//! Nonzero equations in the Hessian //! Nonzero equations in the Hessian
set<int> nonzero_hessian_eqs; set<int> nonzero_hessian_eqs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment