triangle_reflection_complex/compute_picture.sh
2022-06-15 12:20:45 +02:00

10 lines
198 B
Bash
Executable File

#!/bin/bash
for i in $(seq -50 50); do
for j in $(seq 0 50); do
if [ $i -ne 0 ] || [ $j -ne 0 ]; then
IDLIST=output/idlist_13 ./complex_anosov summary 15124 1 1 1 $i/50 $j/50
fi
done
done