#!/bin/sh
for problem in `ls *.csp`
   do problem=`basename $problem .csp`
   ../bin/BM_CBJ2 -q `pwd`/solutions/$problem `pwd`/$problem.csp
done
