schiff

Estimate the radiative properties of soft particless
git clone git://git.meso-star.com/schiff.git
Log | Files | Refs | README | LICENSE

commit b9eeea86c563528dc2627b4086dde104dc886104
parent 491eaff695e8aaf9a93b078af2e10ed9356c3ccb
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 20 May 2026 10:46:10 +0200

Fix Lint warnings in test scripts

Diffstat:
Msrc/test_schiff_cylinder.sh | 2+-
Msrc/test_schiff_sphere.sh | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test_schiff_cylinder.sh b/src/test_schiff_cylinder.sh @@ -494,7 +494,7 @@ done < "${tmppipe}" rm "${tmppipe}" -if [ ! "${i}" -eq "${nx}" ]; then +if [ "${i}" -ne "${nx}" ]; then err=1 # notify the error fi diff --git a/src/test_schiff_sphere.sh b/src/test_schiff_sphere.sh @@ -164,7 +164,7 @@ while [ "${i}" -lt "${nmu}" ]; do i="$((i+1))" done -if [ ! "${i}" -eq "${nmu}" ]; then +if [ "${i}" -ne "${nmu}" ]; then err=1 # notify the error fi