From 98c185cf8488308fc2f261f492b95ccde0a671bd Mon Sep 17 00:00:00 2001 From: ferhat Date: Tue, 22 Sep 2015 12:45:27 +0200 Subject: [PATCH] Allows to compute the extended path and the conditional forecasts with bytecode --- CodeInterpreter.hh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CodeInterpreter.hh b/CodeInterpreter.hh index b6068394..2a4e755f 100644 --- a/CodeInterpreter.hh +++ b/CodeInterpreter.hh @@ -1531,6 +1531,16 @@ public: { return nb_col_other_endo_jacob; }; + inline vector + get_endogenous() + { + return variable; + } + inline vector + get_exogenous() + { + return exogenous; + } inline void write(ostream &CompileCode, unsigned int &instruction_number) {