Skip to content
Snippets Groups Projects
Verified Commit c862a9ed authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Complete 59625184 (nofast option in shell script).

parent 59625184
Branches master
No related tags found
No related merge requests found
......@@ -10,6 +10,14 @@ else
echo "Number of iterations is niter=$ITERATIONS."
fi
if [ ! -v NOFAST ]
then
echo "Use fast option (with use_dll)."
NOFAST=false
else
echo "Do not use fast option (with use_dll)"
fi
if [ ! -v DYNARE ]
then
echo "Path to dynare must be provided."
......@@ -38,7 +46,7 @@ do
then
while [ ! -f $model-done.info ]
do
matlab -batch "addpath $DYNARE; addpath $WHEREAMI/matlab; MODEL='$model'; niter=$ITERATIONS; run_all_simulations;" |& tee -a $model-all.log
matlab -batch "addpath $DYNARE; addpath $WHEREAMI/matlab; MODEL='$model'; niter=$ITERATIONS; nofast=$NOFAST; run_all_simulations;" |& tee -a $model-all.log
done
printf " \u2714 $model\n"
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment