10 lines
No EOL
152 B
Bash
Executable file
10 lines
No EOL
152 B
Bash
Executable file
#!/bin/bash
|
|
rm exo3
|
|
make
|
|
for T in 1 2 4 6 12
|
|
do
|
|
for N in 100000
|
|
do
|
|
./exo3 $N $T >> time_reduction_schedule_static_1000.txt
|
|
done
|
|
done |