diff options
| author | Théo Zimmermann | 2020-02-18 19:47:40 +0100 |
|---|---|---|
| committer | Théo Zimmermann | 2020-02-18 19:47:40 +0100 |
| commit | f208f65ee8ddb40c9195b5c06475eabffeae0401 (patch) | |
| tree | 3f6e5d9f1c1bffe3e4187131f87d3187a8d9ebe5 /plugins/extraction/ExtrHaskellBasic.v | |
| parent | af3fd09e2f0cc2eac2bc8802a6818baf0c184563 (diff) | |
| parent | 83052eff43d3eeff96462286b69249ef868bf5f0 (diff) | |
Merge PR #11529: [build] Consolidate stdlib's .v files under a single directory.
Reviewed-by: Zimmi48
Diffstat (limited to 'plugins/extraction/ExtrHaskellBasic.v')
| -rw-r--r-- | plugins/extraction/ExtrHaskellBasic.v | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/plugins/extraction/ExtrHaskellBasic.v b/plugins/extraction/ExtrHaskellBasic.v deleted file mode 100644 index d08a81da64..0000000000 --- a/plugins/extraction/ExtrHaskellBasic.v +++ /dev/null @@ -1,17 +0,0 @@ -(** Extraction to Haskell : use of basic Haskell types *) - -Require Coq.extraction.Extraction. - -Extract Inductive bool => "Prelude.Bool" [ "Prelude.True" "Prelude.False" ]. -Extract Inductive option => "Prelude.Maybe" [ "Prelude.Just" "Prelude.Nothing" ]. -Extract Inductive unit => "()" [ "()" ]. -Extract Inductive list => "([])" [ "([])" "(:)" ]. -Extract Inductive prod => "(,)" [ "(,)" ]. - -Extract Inductive sumbool => "Prelude.Bool" [ "Prelude.True" "Prelude.False" ]. -Extract Inductive sumor => "Prelude.Maybe" [ "Prelude.Just" "Prelude.Nothing" ]. -Extract Inductive sum => "Prelude.Either" [ "Prelude.Left" "Prelude.Right" ]. - -Extract Inlined Constant andb => "(Prelude.&&)". -Extract Inlined Constant orb => "(Prelude.||)". -Extract Inlined Constant negb => "Prelude.not". |
