9 lines
No EOL
144 B
Bash
Executable file
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 |