Skip to content

Commit

Permalink
Fix shellcheck errors
Browse files Browse the repository at this point in the history
  • Loading branch information
fghoussen committed Sep 16, 2024
1 parent 56a367e commit f773e92
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions EXAMPLES/MATRIX_MARKET/arpackmm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ do
fi

# Run arpackmm: use --nbCV 6 and --maxIt 200 to ease convergence.
./arpackmm $eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb \
--nbCV 6 --maxIt 200 \
./arpackmm "$eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb" \
--nbCV 6 --maxIt 200 \
--verbose 3 --debug 3 &> arpackmm.run.log
tail arpackmm.run.log

# Run arpackmm: re-run with restart from slightly different starting point using shift.
./arpackmm $eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb \
--nbCV 6 --maxIt 200 \
--restart $shiftOpt \
./arpackmm "$eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb" \
--nbCV 6 --maxIt 200 \
--restart "$shiftOpt" \
--verbose 3 --debug 3 &> arpackmm.run.log
tail arpackmm.run.log
echo "========================================================================================"
Expand Down

0 comments on commit f773e92

Please sign in to comment.