M2_SETI/A4/TP_A4/exo3/script1.sh
2023-02-12 16:06:32 +01:00

9 lines
No EOL
144 B
Bash
Executable file

#!/bin/bash
for T in 1 2 4 6 12
do
for N in 10 100 1000 10000 100000 500000
do
./exo3 $N $T >> time_reduction.txt
done
done