X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcomponents%2Fbinaries%2Fmatex%2Fmatex.ml;h=ddd41304914bc1ba7235391c4668b1153c1d18e9;hb=0bcf2dc1a27e38cb6cd3d44eb838d652926841e0;hp=7e296aa0317835233ff38fe9bf6263a1cf30d8c4;hpb=5791ee6b64136ecb0a727e32997b33f4bfab2c31;p=helm.git diff --git a/matita/components/binaries/matex/matex.ml b/matita/components/binaries/matex/matex.ml index 7e296aa03..ddd413049 100644 --- a/matita/components/binaries/matex/matex.ml +++ b/matita/components/binaries/matex/matex.ml @@ -24,20 +24,34 @@ module K = Kernel let help_O = " Set this output directory" let help_X = " Clear configuration and options" +let help_a = " Log alpha-unconverted identifiers (default: no)" +let help_c = " Check term transformations (default: no)" +let help_g = " Global alpha-conversion (default: no)" let help_l = " Output the list of generated files in this file" -let help_p = " omit types (default: no)" -let help_t = " Test anticipation (default: no)" +let help_m = " Log missing notational macros (default: no)" +let help_p = " Omit proofs (default: no)" +let help_t = " Omit types (default: no)" let help = "" (* internal functions *******************************************************) +let alpha_decode = R.triple R.string R.string R.string + +let const_decode = R.pair R.string R.string + +let macro_decode = R.quad R.string R.string R.int R.int + let init registry = R.load_from registry; if !G.no_init then begin K.init (); G.no_init := false; - end + end; + G.alpha_type := R.get_list alpha_decode "matex.alpha.type"; + G.alpha_sort := R.get_list alpha_decode "matex.alpha.sort"; + G.alpha_gref := R.get_list const_decode "matex.alpha.gref"; + G.macro_gref := R.get_list macro_decode "matex.notation.const" let is_registry s = F.check_suffix s ".conf.xml" @@ -63,9 +77,13 @@ begin try A.parse [ "-O", A.String ((:=) G.out_dir), help_O; "-X", A.Unit G.clear, help_X; + "-a", A.Set G.log_alpha, help_a; + "-c", A.Set G.check, help_c; + "-g", A.Set G.global_alpha, help_g; "-l", A.String set_list, help_l; - "-p", A.Set G.no_types, help_p; - "-t", A.Set G.test, help_t; + "-m", A.Set G.log_missing, help_m; + "-p", A.Set G.no_proofs, help_p; + "-t", A.Set G.no_types, help_t; ] process help with | X.Error s -> X.log s