Skip to content
Snippets Groups Projects
Select Git revision
  • e94ca34e70a4c054e97a562b3e87d0ac208c4187
  • master default
  • nlf-fixes
  • newton-quadratic-equation-solver
  • nlf-fixes-r
  • nls-fixes
  • sep-fixes
  • sep
  • use-dprior
  • ep-sparse
  • rebase-1
  • parfor
  • reset-seed-in-unit-tests
  • remove-persistent-variables
  • nonlinear-filter-fixes
  • pac-mce-with-composite-target
  • 6.x
  • dprior
  • covariance-quadratic-approximation
  • benchmark-ec
  • kalman_mex
  • 5.5
  • 5.4
  • 5.3
  • 5.2
  • 5.1
  • 5.0
  • 5.0-rc1
  • 4.7-beta3
  • 4.7-beta2
  • 4.7-beta1
  • 4.6.4
  • 4.6.3
  • 4.6.2
  • 4.6.1
  • 4.6.0
  • 4.6.0-rc2
  • 4.6.0-rc1
  • 4.6-beta1
  • 4.5.7
  • 4.5.6
41 results

slaveParallel.m

Blame
  • Forked from Dynare / dynare
    Source project has a limited visibility.
    indent-c++ 282 B
    #!/bin/sh
    
    # Reindents the C++ source code file given in argument.
    
    if [ -z "$1" ]; then
        echo "Give a filename in argument"
        exit 1
    fi
    
    SCRIPTS_DIR=$(dirname $0)
    
    uncrustify -l CPP --replace -c ${SCRIPTS_DIR}/uncrustify.cfg $1
    emacs -batch $1 -l ${SCRIPTS_DIR}/indent-c++.el