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

chafiol's avatar
chafiol committed
size=1
for i in "rapide" "rapideInsertion"
chafiol's avatar
chafiol committed
do
chafiol's avatar
chafiol committed

chafiol's avatar
chafiol committed
    echo $i
chafiol's avatar
chafiol committed
    time $(for j in `seq 1 $size` ; do
        ../tri -g 100 10 1>../tabs/hypo_tab.txt
        ../tri --$i ../tabs/hypo_tab.txt
    done ;
    );
chafiol's avatar
chafiol committed
done