eai2haskell.xsl
===============

This one will produce 2 haskell lists:

descriptors = [9813246,9815435,....]
associations = [(9813246,9815435),...]

These can easily be constructed to the FGL-Graph.
Furthermore it will test the compiler (I use GHC)
with bigger lists... ;-)

Look at LinkBase.hs.example for a complete Haskell
source code file based on the result of eai2haskell.xsl.
The output of eai2haskell.xsl needs to be polished a
little bit:
 - ", )"    and  "( ," 
   is generated in some cases of broken associations.
   These errors got replaced by ", 7777)" and "( 7777,"
   where 7777 is a node that never occurs. In the end these
   edges can be deleted.
 - ", ]" at the end of the lists is deleted.

Little errors like these can more easily be repaired by hand
than automatically, therefore I left the eai2haskell.xsl script
simple.

