Skip to content
Snippets Groups Projects
Select Git revision
  • 970feee3422ebf48d26c22dace0877cce71559c3
  • master default protected
  • nlf-fixes
  • DSMH
  • OneStep2
  • SMC
  • online-filter-as-a-sampler
  • nonlinear-filter-fixes
  • SMCsamplers
  • smc-sampler
  • 4.5
  • dynamic-striated
  • occbin
  • exo_steady_state
  • filter_initial_state
  • declare_vars_in_model_block
  • exceptions
  • rmExtraExo
  • julia
  • error_msg_undeclared_model_vars
  • static_aux_vars
  • 4.5.6
  • 4.5.5
  • 4.5.4
  • 4.5.3
  • 4.5.2
  • 4.5.1
  • 4.5.0
  • 4.4.3
  • 4.4.2
  • 4.4.1
  • 4.4.0
  • 4.4-beta1
  • 4.3.3
  • 4.3.2
  • 4.3.1
  • 4.3.0
  • 4.2.5
  • 4.2.4
  • 4.2.3
  • 4.2.2
41 results

dynare_sensitivity.m

Blame
  • Forked from Dynare / dynare
    Source project has a limited visibility.
    assign.lex 794 B
    %{
    #include "location.h"
    #include "assign_tab.hh"
    
    	extern YYLTYPE asgn_lloc;
    
    #define YY_USER_ACTION SET_LLOC(asgn_);
    %}
    
    %option nounput
    %option noyy_top_state
    %option stack
    %option yylineno
    %option prefix="asgn_"
    %option never-interactive
    %x CMT
    
    %%
    
     /* comments */
    <*>"/*"            {yy_push_state(CMT);}
    <CMT>[^*\n]*
    <CMT>"*"+[^*/\n]*
    <CMT>"*"+"/"       {yy_pop_state();}
    <CMT>[\n]
    "//".*\n
    
     /* spaces */
    [ \t\r\n]          {return BLANK;}
    
     /* names */
    [A-Za-z_][A-Za-z0-9_]* {
    	asgn_lval.string = asgn_text;
    	return NAME;
    }
    
    ;                  {return SEMICOLON;}
    =                  {return EQUAL_SIGN;}
    . {
    	asgn_lval.character = asgn_text[0];
    	return CHARACTER;
    }
    
    %%
    
    int asgn_wrap()
    {
    	return 1;
    }
    
    void asgn__destroy_buffer(void* p)
    {
    	asgn__delete_buffer((YY_BUFFER_STATE)p);
    }