
vectorw.c
Usage: /home/wschrep/precompiler/precompile [options] <inputfile> <outputfile>

Options:
  -nofor             don't convert variables in for loops
  -c <configfile>    specify xml file containing procedures and/or variables
                      which must be skipped
  -x <convertfile>   xml file which specifies the conversion between types
  -noprintf          don't convert printf statements
  -preparse          use preparser to make a list of all constructed 
                      variables in <outputfile>
  -constants         write position of constants 'decimal' or 'integer' to <outfile>
  -single            sets IEEE single precision.
  -double            sets IEEE double precision.
  -radix <size>      set the radix size, default size=2
  -precision <size>  set the precision size, default size=24
  -exp <low> <up>    set the exponent default low=-126, upper=127
  -expbits <bitsize> set the nr of bits the exponent must use
  -round <n|p|m|z>   set the rounding type, default = n  
                      n = round to nearest
                      p = round to plus inf
                      m = round to min inf
                      z = round to zero
  -outputverbose     set verbose output 
  -outputmpieee <p|d|b|y|h|r|f>+ set the MpIeee output type, default = d 
                      p = parameter
                      d = decimal
                      b = binary
                      y = binary representation
                      h = hexidecimal representation
                      r = rational
                      f = flags
  -outputrational <d|r|f>+ set the Rational output type, default = r  
                      d = decimal
                      r = rational
                      f = flags
  -default           insert precision settings after the main(){ 
  -init <initfile>   insert source code contained in file after the main(){ 

The options -outputmpieee and -outputrational can have more than 1
output type(indicated with the +)
for example: /home/wschrep/precompiler/precompile in out -outputmpieee pdy
