rem Keywords: matrix L, arrayi B

echo Problem 1
echo None of these constraints should be redundant.

L 3 5
1	0	0	0	1
0	1	0	0	1
0	0	1	0	1

B 3
2 2 2

done

echo Problem 2
echo The first constraint should be redundant.

L 3 5
1	0	0	0	1
1	0	0	0	1
0	0	1	0	1

B 3
1 1 1

done

echo Problem 3
echo The first or third constraint should be redundant.
L 3 3
1	0	1
0	1	1
1	1	2

B 3
1	1	2

done
echo Problem 4
echo This is a test of a constraint matrix with a null row (row 1).
L 3 3
1	0	1
0	0	0
0	1	0

B 3
1	0 2

done

echo Problem 5
echo The third constraint should be redundant.
L 3 3
1	0	1
0	1	1
1	2	2

B 3
1	1 2
done

quit
