Skip to content
Snippets Groups Projects
hypothese_perf.sh 208 B
Newer Older
chafiol's avatar
chafiol committed
#!/bin/bash

for i in "insertion" "fusion" "rapide"
do
    cmd=$(for j in `seq 1 1000`
    do
    ../tri -g 10 100 1>../tabs/hypo_tab.txt
    ../tri --$i ../tabs/hypo_tab.txt
    done )
    time $cmd
done