diff options
| author | Erik Martin-Dorel | 2019-10-22 11:57:16 +0200 |
|---|---|---|
| committer | Pierre Roux | 2019-11-01 10:21:51 +0100 |
| commit | 3cb32772ccd0f2882a40d7f75b044b738adadad3 (patch) | |
| tree | 6b0f67aae816c45d489534ac9702ee9092b6032c /plugins/extraction/scheme.ml | |
| parent | 0caf27d014853693836ef06b1706502070b032f6 (diff) | |
Add extraction for primitive floats
Co-authored-by: Pierre Roux <pierre.roux@onera.fr>
Diffstat (limited to 'plugins/extraction/scheme.ml')
| -rw-r--r-- | plugins/extraction/scheme.ml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/extraction/scheme.ml b/plugins/extraction/scheme.ml index dd840cd929..c341ec8d57 100644 --- a/plugins/extraction/scheme.ml +++ b/plugins/extraction/scheme.ml @@ -131,6 +131,8 @@ let rec pp_expr env args = | MLaxiom -> paren (str "error \"AXIOM TO BE REALIZED\"") | MLuint _ -> paren (str "Prelude.error \"EXTRACTION OF UINT NOT IMPLEMENTED\"") + | MLfloat _ -> + paren (str "Prelude.error \"EXTRACTION OF FLOAT NOT IMPLEMENTED\"") and pp_cons_args env = function | MLcons (_,r,args) when is_coinductive r -> |
