https://gitlab.informatik.uni-bremen.de/grapa/java/maxcliqueenumeration
Revision 11b30123c80c717f2ed14158faeed9ecb3cdc815 authored by Darren Strash on 01 March 2016, 14:08:53 UTC, committed by Darren Strash on 01 March 2016, 14:08:53 UTC
1 parent 6057776
Raw File
Tip revision: 11b30123c80c717f2ed14158faeed9ecb3cdc815 authored by Darren Strash on 01 March 2016, 14:08:53 UTC
Start development on faster bipartite matching
Tip revision: 11b3012
test.sh
#! /bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR

make clean
make

for i in  data/*/*
do 
    echo $i;
    echo "----"
    echo "Statistics:"
    echo " "
    bin/compdegen < $i > /dev/null;
    bin/printnm < $i > /dev/null;
    echo " "
    echo "Clique counts and runtimes:"
    echo " "
    bin/qc --algorithm=tomita     --input-file=$i > /dev/null
    bin/qc --algorithm=adjlist    --input-file=$i > /dev/null
    bin/qc --algorithm=hybrid     --input-file=$i > /dev/null
    bin/qc --algorithm=degeneracy --input-file=$i > /dev/null
    echo " "
    echo " "
done
back to top