Skip to content
Snippets Groups Projects
Select Git revision
  • c848b3337a56609b22e5d3a600587e6c31ede1e2
  • 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

global_initialization.m

Blame
  • Forked from Dynare / dynare
    Source project has a limited visibility.
    ax_latex_class.m4 2.06 KiB
    # ===========================================================================
    #         http://www.nongnu.org/autoconf-archive/ax_latex_class.html
    # ===========================================================================
    #
    # OBSOLETE MACRO
    #
    #   Deprecated because of licensing issues. The Lesser GPL imposes licensing
    #   restrictions on the generated configure script unless it is augmented
    #   with an Autoconf Exception clause.
    #
    # SYNOPSIS
    #
    #   AX_LATEX_CLASS(CLASSNAME,VARIABLETOSET[,ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]])
    #
    # DESCRIPTION
    #
    #   This macros test is class CLASSNAME exists and work and set
    #   VARIABLETOSET to yes or no If ACTION-IF-FOUND (and ACTION-IF-NOT-FOUND)
    #   are set, do the correct action
    #
    # LICENSE
    #
    #   Copyright © 2008 Boretti Mathieu <boretti@eig.unige.ch>
    #   Copyright © 2009 Dynare Team
    #
    #   This library is free software; you can redistribute it and/or modify it
    #   under the terms of the GNU Lesser General Public License as published by
    #   the Free Software Foundation; either version 2.1 of the License, or (at
    #   your option) any later version.
    #
    #   This library 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 Lesser
    #   General Public License for more details.
    #
    #   You should have received a copy of the GNU Lesser General Public License
    #   along with this library. If not, see <http://www.gnu.org/licenses/>.
    
    AC_DEFUN([AX_LATEX_CLASS],[
    AC_CACHE_CHECK([for usability of class $1],[ac_cv_latex_class_]translit($1,[-],[_]),[
    AX_LATEX_TEST([\documentclass{$1}
    \begin{document}
    \end{document}],[ac_cv_latex_class_]translit($1,[-],[_]))
    ])
    $2=$[ac_cv_latex_class_]translit($1,[-],[_]) ; export $2;
    AC_SUBST($2)
    ifelse($#,2,[],$#,3,[
        if test "[$]$2" = "yes" ;
        then
            $3
        fi
    ],$#,4,[
        ifelse($3,[],[
            if test "[$]$2" = "no" ;
            then
                $4
            fi
        ],[
            if test "[$]$2" = "yes" ;
            then
                $3
            else
                $4
            fi
        ])
    ])
    
    ])