Skip to content
Snippets Groups Projects
Commit cf9efb1c authored by Erwan Jahier's avatar Erwan Jahier
Browse files

use Lv6util.entete instead of LicDump.dump_entete

parent b67f74c0
No related branches found
No related tags found
No related merge requests found
Pipeline #12801 passed
(* Time-stamp: <modified the 28/03/2018 (at 11:02) by Erwan Jahier> *)
(* Time-stamp: <modified the 10/07/2018 (at 10:42) by Erwan Jahier> *)
(* generate ocaml glue code that makes it possible to call lus2lic
from ocaml with the current set of arguments (with Lv6Run.make).
......@@ -20,7 +20,7 @@ let (f: string array -> Lv6MainArgs.t -> unit) =
in
let args_str = "\"" ^ (String.concat "\";\"" args) ^"\"" in
let oc = open_out (outfile) in
LicDump.dump_entete oc;
Lv6util.entete oc "(*" "*)";
Printf.fprintf oc "
let plugin =
let args = Array.of_list [%s] in
......
(* Time-stamp: <modified the 03/07/2018 (at 15:28) by Erwan Jahier> *)
(* Time-stamp: <modified the 10/07/2018 (at 10:43) by Erwan Jahier> *)
open Lv6Verbose
open AstV6
......@@ -134,7 +134,7 @@ let (gen_autotest_files : LicPrg.t -> Lv6Id.idref option -> Lv6MainArgs.t -> uni
let name = main_node.Lv6Id.id_id in
let lutin_file_name = ("_"^name^"_env.lut") in
let oc = open_out lutin_file_name in
LicDump.dump_entete oc;
Lv6util.entete oc "--" "";
output_string oc ("node " ^ (name) ^ "_env("^ (String.concat ";" outvars_str) ^
") returns(" ^ (String.concat ";" invars_str) ^ ") =\n "^
assertion_cstr^" \n");
......@@ -232,7 +232,7 @@ let
res = if r_abs(x)>1.0 then r_abs(1.0-(y/x)) < seuil else r_abs(x-y) < seuil;
tel
" in
LicDump.dump_entete oc;
Lv6util.entete oc "--" "";
output_string oc prg;
flush oc;
close_out oc;
......
(* Time-stamp: <modified the 06/07/2018 (at 10:32) by Erwan Jahier> *)
(* Time-stamp: <modified the 10/07/2018 (at 10:41) by Erwan Jahier> *)
open Soc
open Data
......@@ -290,7 +290,7 @@ let (f : Lv6MainArgs.t -> Soc.tbl -> Soc.key -> unit) =
in
open_out rif_file
in
LicDump.dump_entete oc;
Lv6util.entete oc "#" "";
RifIO.write_interface oc exp_vntl_i exp_vntl_o None None;
RifIO.flush oc;
try
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment