Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • 6.x protected
  • madysson
  • 5.x protected
  • asm
  • time-varying-information-set
  • 4.6 protected
  • dynare_minreal
  • dragonfly
  • various_fixes
  • 4.5 protected
  • clang+openmp
  • exo_steady_state
  • declare_vars_in_model_block
  • julia
  • error_msg_undeclared_model_vars
  • static_aux_vars
  • slice
  • aux_func
  • penalty
  • 6.4 protected
  • 6.3 protected
  • 6.2 protected
  • 6.1 protected
  • 6.0 protected
  • 6-beta2 protected
  • 6-beta1 protected
  • 5.5 protected
  • 5.4 protected
  • 5.3 protected
  • 5.2 protected
  • 5.1 protected
  • 5.0 protected
  • 5.0-rc1 protected
  • 4.7-beta3 protected
  • 4.7-beta2 protected
  • 4.7-beta1 protected
  • 4.6.4 protected
  • 4.6.3 protected
  • 4.6.2 protected
40 results

SymbolTable.cc

Blame
  • SymbolTable.cc 14.14 KiB
    /*
     * Copyright (C) 2003-2011 Dynare Team
     *
     * This file is part of Dynare.
     *
     * Dynare is free software: you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation, either version 3 of the License, or
     * (at your option) any later version.
     *
     * Dynare is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
     */
    
    #include <algorithm>
    #include <sstream>
    #include <iostream>
    #include <cassert>
    
    #include "SymbolTable.hh"
    
    AuxVarInfo::AuxVarInfo(int symb_id_arg, aux_var_t type_arg, int orig_symb_id_arg, int orig_lead_lag_arg,
                           string expectation_information_set_name_arg, int equation_number_for_multiplier_arg) :
      symb_id(symb_id_arg),
      type(type_arg),
      orig_symb_id(orig_symb_id_arg),
      orig_lead_lag(orig_lead_lag_arg),
      expectation_information_set_name(expectation_information_set_name_arg),
      equation_number_for_multiplier(equation_number_for_multiplier_arg)
    {
    }
    
    SymbolTable::SymbolTable() : frozen(false), size(0)
    {
    }
    
    int
    SymbolTable::addSymbol(const string &name, SymbolType type, const string &tex_name) throw (AlreadyDeclaredException, FrozenException)
    {
      if (frozen)
        throw FrozenException();
    
      if (exists(name))
        {
          if (type_table[getID(name)] == type)
            throw AlreadyDeclaredException(name, true);
          else
            throw AlreadyDeclaredException(name, false);
        }
    
      int id = size++;
    
      symbol_table[name] = id;
      type_table.push_back(type);
      name_table.push_back(name);
      tex_name_table.push_back(tex_name);
    
      return id;
    }
    
    int
    SymbolTable::addSymbol(const string &name, SymbolType type) throw (AlreadyDeclaredException, FrozenException)
    {
      // Construct "tex_name" by prepending an antislash to all underscores in "name"
      string tex_name = name;
      size_t pos = 0;
      while ((pos = tex_name.find('_', pos)) != string::npos)
        {
          tex_name.insert(pos, "\\");
          pos += 2;
        }
      return addSymbol(name, type, tex_name);
    }
    
    void
    SymbolTable::freeze() throw (FrozenException)
    {
      if (frozen)
        throw FrozenException();
    
      frozen = true;
    
      for (int i = 0; i < size; i++)
        {
          int tsi;
          switch (getType(i))
            {
            case eEndogenous:
              tsi = endo_ids.size();
              endo_ids.push_back(i);
              break;
            case eExogenous:
              tsi = exo_ids.size();
              exo_ids.push_back(i);
              break;
            case eExogenousDet:
              tsi = exo_det_ids.size();
              exo_det_ids.push_back(i);
              break;
            case eParameter:
              tsi = param_ids.size();
              param_ids.push_back(i);
              break;
            default:
              tsi = -1;
              break;
            }
          type_specific_ids.push_back(tsi);
        }
    }
    
    void
    SymbolTable::changeType(int id, SymbolType newtype) throw (UnknownSymbolIDException, FrozenException)
    {
      if (frozen)
        throw FrozenException();
    
      if (id < 0 || id >= size)
        throw UnknownSymbolIDException(id);
    
      type_table[id] = newtype;
    }
    
    int
    SymbolTable::getID(SymbolType type, int tsid) const throw (UnknownTypeSpecificIDException, NotYetFrozenException)
    {
      if (!frozen)
        throw NotYetFrozenException();
    
      switch (type)
        {
        case eEndogenous:
          if (tsid < 0 || tsid >= (int) endo_ids.size())
            throw UnknownTypeSpecificIDException(tsid, type);
          else
            return endo_ids[tsid];
        case eExogenous:
          if (tsid < 0 || tsid >= (int) exo_ids.size())
            throw UnknownTypeSpecificIDException(tsid, type);
          else
            return exo_ids[tsid];
        case eExogenousDet:
          if (tsid < 0 || tsid >= (int) exo_det_ids.size())
            throw UnknownTypeSpecificIDException(tsid, type);
          else
            return exo_det_ids[tsid];
        case eParameter:
          if (tsid < 0 || tsid >= (int) param_ids.size())
            throw UnknownTypeSpecificIDException(tsid, type);
          else
            return param_ids[tsid];
        default:
          throw UnknownTypeSpecificIDException(tsid, type);
        }
    }
    
    void
    SymbolTable::writeOutput(ostream &output) const throw (NotYetFrozenException)
    {
      if (!frozen)
        throw NotYetFrozenException();
    
      if (exo_nbr() > 0)
        {
          output << "M_.exo_names = '" << getName(exo_ids[0]) << "';" << endl;
          output << "M_.exo_names_tex = '" << getTeXName(exo_ids[0]) << "';" << endl;
          for (int id = 1; id < exo_nbr(); id++)
            {
              output << "M_.exo_names = char(M_.exo_names, '" << getName(exo_ids[id]) << "');" << endl
                     << "M_.exo_names_tex = char(M_.exo_names_tex, '" << getTeXName(exo_ids[id]) << "');" << endl;
            }
        }
      if (exo_det_nbr() > 0)
        {
          output << "M_.exo_det_names = '" << getName(exo_det_ids[0]) << "';" << endl;
          output << "M_.exo_det_names_tex = '" << getTeXName(exo_det_ids[0]) << "';" << endl;
          for (int id = 1; id < exo_det_nbr(); id++)
            {
              output << "M_.exo_det_names = char(M_.exo_det_names, '" << getName(exo_det_ids[id]) << "');" << endl
                     << "M_.exo_det_names_tex = char(M_.exo_det_names_tex, '" << getTeXName(exo_det_ids[id]) << "');" << endl;
            }
        }
      if (endo_nbr() > 0)
        {
          output << "M_.endo_names = '" << getName(endo_ids[0]) << "';" << endl;
          output << "M_.endo_names_tex = '" << getTeXName(endo_ids[0]) << "';" << endl;
          for (int id = 1; id < endo_nbr(); id++)
            {
              output << "M_.endo_names = char(M_.endo_names, '" << getName(endo_ids[id]) << "');" << endl
                     << "M_.endo_names_tex = char(M_.endo_names_tex, '" << getTeXName(endo_ids[id]) << "');" << endl;
            }
        }
      if (param_nbr() > 0)
        {
          output << "M_.param_names = '" << getName(param_ids[0]) << "';" << endl;
          output << "M_.param_names_tex = '" << getTeXName(param_ids[0]) << "';" << endl;
          for (int id = 1; id < param_nbr(); id++)
            {
              output << "M_.param_names = char(M_.param_names, '" << getName(param_ids[id]) << "');" << endl
                     << "M_.param_names_tex = char(M_.param_names_tex, '" << getTeXName(param_ids[id]) << "');" << endl;
    
              if (getName(param_ids[id]) == "dsge_prior_weight")
                output << "options_.dsge_var = 1;" << endl;
            }
        }
    
      output << "M_.exo_det_nbr = " << exo_det_nbr() << ";" << endl
             << "M_.exo_nbr = " << exo_nbr() << ";" << endl
             << "M_.endo_nbr = " << endo_nbr() << ";" << endl
             << "M_.param_nbr = " << param_nbr() << ";" << endl;
    
      // Write the auxiliary variable table
      output << "M_.orig_endo_nbr = " << orig_endo_nbr() << ";" << endl;
      if (aux_vars.size() == 0)
        output << "M_.aux_vars = [];" << endl;
      else
        for (int i = 0; i < (int) aux_vars.size(); i++)
          {
            output << "M_.aux_vars(" << i+1 << ").endo_index = " << getTypeSpecificID(aux_vars[i].get_symb_id())+1 << ";" << endl
                   << "M_.aux_vars(" << i+1 << ").type = " << aux_vars[i].get_type() << ";" << endl;
            switch (aux_vars[i].get_type())
              {
              case avEndoLead:
              case avExoLead:
              case avExpectation:
                break;
              case avExpectationRIS:
                output << "M_.aux_vars(" << i+1 << ").expectation_information_set_name = '" << aux_vars[i].get_expectation_information_set_name() << "';" << endl;
                break;
              case avEndoLag:
              case avExoLag:
                output << "M_.aux_vars(" << i+1 << ").orig_index = " << getTypeSpecificID(aux_vars[i].get_orig_symb_id())+1 << ";" << endl
                       << "M_.aux_vars(" << i+1 << ").orig_lead_lag = " << aux_vars[i].get_orig_lead_lag() << ";" << endl;
                break;
              case avMultiplier:
                output << "M_.aux_vars(" << i+1 << ").eq_nbr = '" << aux_vars[i].get_equation_number_for_multiplier() << "';" << endl;
                break;
              }
          }
    
      if (predeterminedNbr() > 0)
        {
          output << "M_.predetermined_variables = [ ";
          for (set<int>::const_iterator it = predetermined_variables.begin();
               it != predetermined_variables.end(); it++)
            output << getTypeSpecificID(*it)+1 << " ";
          output << "];" << endl;
        }
    
      if (observedVariablesNbr() > 0)
        {
          output << "options_.varobs = [];" << endl;
          for (vector<int>::const_iterator it = varobs.begin();
               it != varobs.end(); it++)
            if (it == varobs.begin())
              output << "options_.varobs = '" << getName(*it) << "';" << endl;
            else
              output << "options_.varobs = char(options_.varobs, '" << getName(*it) << "');" << endl;
    
          output << "options_.varobs_id = [ ";
          for (vector<int>::const_iterator it = varobs.begin();
               it != varobs.end(); it++)
            output << getTypeSpecificID(*it)+1 << " ";
          output << " ];"  << endl;
        }
    }
    
    int
    SymbolTable::addLeadAuxiliaryVarInternal(bool endo, int index) throw (FrozenException)
    {
      ostringstream varname;
      if (endo)
        varname << "AUX_ENDO_LEAD_";
      else
        varname << "AUX_EXO_LEAD_";
      varname << index;
      int symb_id;
      try
        {
          symb_id = addSymbol(varname.str(), eEndogenous);
        }
      catch (AlreadyDeclaredException &e)
        {
          cerr << "ERROR: you should rename your variable called " << varname.str() << ", this name is internally used by Dynare" << endl;
          exit(EXIT_FAILURE);
        }
    
      aux_vars.push_back(AuxVarInfo(symb_id, (endo ? avEndoLead : avExoLead), 0, 0, "", 0));
    
      return symb_id;
    }
    
    int
    SymbolTable::addLagAuxiliaryVarInternal(bool endo, int orig_symb_id, int orig_lead_lag) throw (FrozenException)
    {
      ostringstream varname;
      if (endo)
        varname << "AUX_ENDO_LAG_";
      else
        varname << "AUX_EXO_LAG_";
      varname << orig_symb_id << "_" << -orig_lead_lag;
    
      int symb_id;
      try
        {
          symb_id = addSymbol(varname.str(), eEndogenous);
        }
      catch (AlreadyDeclaredException &e)
        {
          cerr << "ERROR: you should rename your variable called " << varname.str() << ", this name is internally used by Dynare" << endl;
          exit(EXIT_FAILURE);
        }
    
      aux_vars.push_back(AuxVarInfo(symb_id, (endo ? avEndoLag : avExoLag), orig_symb_id, orig_lead_lag, "", 0));
    
      return symb_id;
    }
    
    int
    SymbolTable::addEndoLeadAuxiliaryVar(int index) throw (FrozenException)
    {
      return addLeadAuxiliaryVarInternal(true, index);
    }
    
    int
    SymbolTable::addEndoLagAuxiliaryVar(int orig_symb_id, int orig_lead_lag) throw (FrozenException)
    {
      return addLagAuxiliaryVarInternal(true, orig_symb_id, orig_lead_lag);
    }
    
    int
    SymbolTable::addExoLeadAuxiliaryVar(int index) throw (FrozenException)
    {
      return addLeadAuxiliaryVarInternal(false, index);
    }
    
    int
    SymbolTable::addExoLagAuxiliaryVar(int orig_symb_id, int orig_lead_lag) throw (FrozenException)
    {
      return addLagAuxiliaryVarInternal(false, orig_symb_id, orig_lead_lag);
    }
    
    int
    SymbolTable::addExpectationAuxiliaryVar(int information_set, int index, const string &information_set_name) throw (FrozenException)
    {
      ostringstream varname;
      int symb_id;
    
      if (information_set_name.empty())
        varname << "AUX_EXPECT_" << (information_set < 0 ? "LAG" : "LEAD") << "_"
                << abs(information_set) << "_" << index;
      else
        varname << "AUX_EXPECT_" << information_set_name << "_" << index;
    
      try
        {
          symb_id = addSymbol(varname.str(), eEndogenous);
        }
      catch (AlreadyDeclaredException &e)
        {
          cerr << "ERROR: you should rename your variable called " << varname.str() << ", this name is internally used by Dynare" << endl;
          exit(EXIT_FAILURE);
        }
    
      aux_vars.push_back(AuxVarInfo(symb_id, (information_set_name.empty() ? avExpectation : avExpectationRIS), 0, 0, information_set_name, 0));
    
      return symb_id;
    }
    
    int
    SymbolTable::addMultiplierAuxiliaryVar(int index) throw (FrozenException)
    {
      ostringstream varname;
      int symb_id;
      varname << "MULT_" << index+1;
    
      try
        {
          symb_id = addSymbol(varname.str(), eEndogenous);
        }
      catch (AlreadyDeclaredException &e)
        {
          cerr << "ERROR: you should rename your variable called " << varname.str() << ", this name is internally used by Dynare" << endl;
          exit(EXIT_FAILURE);
        }
    
      aux_vars.push_back(AuxVarInfo(symb_id, avMultiplier, 0, 0, "", index));
      return symb_id;
    }
    
    int
    SymbolTable::searchAuxiliaryVars(int orig_symb_id, int orig_lead_lag) const throw (SearchFailedException)
    {
      for (size_t i = 0; i < aux_vars.size(); i++)
        if ((aux_vars[i].get_type() == avEndoLag || aux_vars[i].get_type() == avExoLag)
            && aux_vars[i].get_orig_symb_id() == orig_symb_id && aux_vars[i].get_orig_lead_lag() == orig_lead_lag)
          return aux_vars[i].get_symb_id();
      throw SearchFailedException(orig_symb_id, orig_lead_lag);
    }
    
    void
    SymbolTable::markPredetermined(int symb_id) throw (UnknownSymbolIDException, FrozenException)
    {
      if (symb_id < 0 || symb_id >= size)
        throw UnknownSymbolIDException(symb_id);
      if (frozen)
        throw FrozenException();
    
      assert(getType(symb_id) == eEndogenous);
    
      predetermined_variables.insert(symb_id);
    }
    
    bool
    SymbolTable::isPredetermined(int symb_id) const throw (UnknownSymbolIDException)
    {
      if (symb_id < 0 || symb_id >= size)
        throw UnknownSymbolIDException(symb_id);
    
      return (predetermined_variables.find(symb_id) != predetermined_variables.end());
    }
    
    int
    SymbolTable::predeterminedNbr() const
    {
      return (predetermined_variables.size());
    }
    
    void
    SymbolTable::addObservedVariable(int symb_id) throw (UnknownSymbolIDException)
    {
      if (symb_id < 0 || symb_id >= size)
        throw UnknownSymbolIDException(symb_id);
    
      assert(getType(symb_id) == eEndogenous);
      varobs.push_back(symb_id);
    }
    
    int
    SymbolTable::observedVariablesNbr() const
    {
      return (int) varobs.size();
    }
    
    bool
    SymbolTable::isObservedVariable(int symb_id) const
    {
      return (find(varobs.begin(), varobs.end(), symb_id) != varobs.end());
    }
    
    int
    SymbolTable::getObservedVariableIndex(int symb_id) const
    {
      vector<int>::const_iterator it = find(varobs.begin(), varobs.end(), symb_id);
      assert(it != varobs.end());
      return (int) (it - varobs.begin());
    }
    
    vector <int>
    SymbolTable::getTrendVarIds() const
    {
      vector <int> trendVars;
      for (symbol_table_type::const_iterator it = symbol_table.begin();
           it != symbol_table.end(); it++)
        if (getType(it->second) == eTrend)
          trendVars.push_back(it->second);
      return trendVars;
    }