Skip to content
This repository was archived by the owner on Jun 9, 2021. It is now read-only.

Commit a2d632c

Browse files
author
Eddy Westbrook
committed
composeM is no longer skipped by the Coq translator
1 parent 9fa8e4f commit a2d632c

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

saw-core-coq/coq/generated/CryptolToCoq/SAWCorePrelude.v

+2-1
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,8 @@ Definition foldIRT : forall (As : @ListSort), forall (Ds : @IRTSubsts As), foral
10271027

10281028
(* Prelude.bindM was skipped *)
10291029

1030-
(* Prelude.composeM was skipped *)
1030+
Definition composeM : forall (a : Type), forall (b : Type), forall (c : Type), (a -> CompM b) -> (b -> CompM c) -> a -> CompM c :=
1031+
fun (a : Type) (b : Type) (c : Type) (f : a -> CompM b) (g : b -> CompM c) (x : a) => @bindM CompM _ b c (f x) g.
10311032

10321033
Definition tupleCompMFunBoth : forall (a : Type), forall (b : Type), forall (c : Type), (a -> CompM b) -> prod c a -> CompM (prod c b) :=
10331034
fun (a : Type) (b : Type) (c : Type) (f : a -> CompM b) (x : prod c a) => @bindM CompM _ b (prod c b) (f (SAWCoreScaffolding.snd x)) (fun (y : b) => @returnM CompM _ (prod c b) (pair (SAWCoreScaffolding.fst x) y)).

saw-core-coq/src/Verifier/SAW/Translation/Coq/SpecialTreatment.hs

-6
Original file line numberDiff line numberDiff line change
@@ -446,12 +446,6 @@ sawCorePreludeSpecialTreatmentMap configuration =
446446
, ("List__rec", replace (Coq.ExplVar "Datatypes.list_rect"))
447447
]
448448

449-
-- Definitions that depend on axioms currently skipped
450-
++
451-
[ ("composeM", skip)
452-
, ("letRecFuns", skip)
453-
]
454-
455449
constantsRenamingMap :: [(String, String)] -> Map.Map String String
456450
constantsRenamingMap notations = Map.fromList notations
457451

0 commit comments

Comments
 (0)