Skip to content
Snippets Groups Projects
Commit 431bf65f authored by Michele Alberti's avatar Michele Alberti
Browse files

[aimos] Rework some style.

parent 59e91079
No related branches found
No related tags found
No related merge requests found
...@@ -25,19 +25,18 @@ open Base ...@@ -25,19 +25,18 @@ open Base
let aimos_file = Re__Core.(compile (str "%{aimos_file}")) let aimos_file = Re__Core.(compile (str "%{aimos_file}"))
let write_config (inputs_path : string) (models_path : string) let write_config inputs_path models_path perturbation perturbation_path out_mode
(perturbation : string) (perturbation_path : string) (out_mode : string) amplitude =
(amplitude : Dataset.amplitude) =
let config_file = Caml.Filename.temp_file "aimos-" ".yml" in let config_file = Caml.Filename.temp_file "aimos-" ".yml" in
let config_path = Fpath.v config_file in let config_path = Fpath.v config_file in
let ampli = Dataset.string_of_amplitude amplitude in let ampli = Dataset.string_of_amplitude amplitude in
let transformations : Yaml.value = let transformations =
match ampli with match ampli with
| None -> `A [ `O [ ("name", `String perturbation) ] ] | None -> `A [ `O [ ("name", `String perturbation) ] ]
| Some a -> | Some a ->
`A [ `O [ ("name", `String perturbation); ("fn_range", `String a) ] ] `A [ `O [ ("name", `String perturbation); ("fn_range", `String a) ] ]
in in
let options : Yaml.value = let options =
match perturbation_path with match perturbation_path with
| "" -> | "" ->
`O `O
...@@ -55,7 +54,7 @@ let write_config (inputs_path : string) (models_path : string) ...@@ -55,7 +54,7 @@ let write_config (inputs_path : string) (models_path : string)
("custom_t_path", `String ctp); ("custom_t_path", `String ctp);
] ]
in in
let models : Yaml.value = let models =
match out_mode with match out_mode with
| "" -> | "" ->
`A [ `O [ ("defaults", `O [ ("models_path", `String models_path) ]) ] ] `A [ `O [ ("defaults", `O [ ("models_path", `String models_path) ]) ] ]
...@@ -73,20 +72,15 @@ let write_config (inputs_path : string) (models_path : string) ...@@ -73,20 +72,15 @@ let write_config (inputs_path : string) (models_path : string)
]; ];
] ]
in in
let full_config : Yaml.value = let full_config = `O [ ("options", options); ("models", models) ] in
`O [ ("options", options); ("models", models) ]
in
Yaml_unix.to_file_exn config_path full_config; Yaml_unix.to_file_exn config_path full_config;
config_file config_file
let build_command config_prover let build_command config_prover
(predicate : (Language.nn_shape, string) Dataset.predicate) = (predicate : (Language.nn_shape, string) Dataset.predicate) =
let dataset = predicate.dataset in let inputs_path = Unix.realpath predicate.dataset in
let inputs_path, models_path = let models_path = Unix.realpath predicate.model.filename in
(Unix.realpath dataset, Unix.realpath predicate.model.filename) let perturbation, amplitude, perturbation_path, out_mode =
in
let perturbation, (amplitude : Dataset.amplitude), perturbation_path, out_mode
=
match predicate.property with match predicate.property with
| Dataset.MetaRobust (_, aimos_params) -> | Dataset.MetaRobust (_, aimos_params) ->
( aimos_params.perturbation, ( aimos_params.perturbation,
......
...@@ -113,7 +113,6 @@ let failwith_unsupported_term t = ...@@ -113,7 +113,6 @@ let failwith_unsupported_term t =
let failwith_unsupported_ls ls = let failwith_unsupported_ls ls =
failwith (Fmt.str "Unsupported logic symbol %a" Pretty.print_ls ls) failwith (Fmt.str "Unsupported logic symbol %a" Pretty.print_ls ls)
(* TODO: use amplitude type instead of 3 ints *)
let interpret_predicate env ~on_model ~on_dataset task = let interpret_predicate env ~on_model ~on_dataset task =
let task = Trans.apply Introduction.introduce_premises task in let task = Trans.apply Introduction.introduce_premises task in
let term = Task.task_goal_fmla task in let term = Task.task_goal_fmla task in
......
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