Module type Bsmlsig.MACHINE_PARAMETERS


module type MACHINE_PARAMETERS = sig .. end


type bsp = {
   p : int;
   g : float;
   l : float;
   r : float;
}
Describes the BSP parameters of the machine.
val read : int -> unit
Reads the parameters from the configuration file. Parameters :
val get : unit -> bsp
Get the current parameters.
Returns the value of the parameters as initialised by read ()