 * Seed is a java software for the random generation of tree-like structures
 *
 * Author: Cyril Nicaud, based on ideas from Pierre-Cyrille Heam & Cyril Nicaud
 *
 * Copyright (C) 2009 Universite Paris-Est Marne-la-Vallee
 *  
 * This program is free software; you can redistribute it and use it
 * freely.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
 *

To use seed, just type the line command:
  java -jar seed.jar spec.xml n {k}
where:
 - spec.xml is the name of the file describing the grammar. It must follow
   the seed.dtd DTD.
 - n is the size, i.e. number of nodes of the generated trees
 - k is the number of generated trees. Default value is 1.

You can also use the following command to obtain the number of objects of size n:
 java -jar seed.jar spec.xml n -count

A text output is also available using:
 java -jar seed.jar spec.xml n -text





