PREREQUISITES:
--------------
	ocaml
	python
	make

HOWTO:
------
compiles the voteur binary:
	$ make

run the test suite
	$ make test


HOWTO RUN TEST SUITES:
---------------------

Before running test.py, the "voteur" binary must be compiled and in the same
directory that "test.py".

	$ ./test.py filename

The default test suite (run by make test) is the file tests/input.txt



KNOWN ISSUES
------------
VThere is no description of the tests, but the input file format was extended
to allow empty lines and comments starting with the '#' character
There are a few comments, that can easily be removed by a sed...

There is no file output by default, use redirections

The input format use 'true' and 'false' keyword, and not '0' and '1'

The output format may not be correct


CLEANING UP
-------------------------------------
remove intermediate files
	$ make clean

remove "voteur" binary
	$ make cleanall

