Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tmOptimizedBind to avoid quadratic blowup #936

Merged
merged 1 commit into from
Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions template-coq/theories/TemplateMonad/Core.v
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,25 @@ Cumulative Inductive TemplateMonad@{t u} : Type@{t} -> Prop :=
.

(** This version of [tmBind] flattens nesting structure; using it in deeply recursive template programs can speed things up drastically *)
(** We use [tmBind] in the recursive position to avoid quadratic blowup in the number of [tmOptimizedBind]s *)
Fixpoint tmOptimizedBind@{t u} {A B : Type@{t}} (v : TemplateMonad@{t u} A) : (A -> TemplateMonad@{t u} B) -> TemplateMonad@{t u} B
:= match v with
| tmReturn x => fun f => f x
| tmBind v k => fun f => tmOptimizedBind v (fun v => tmOptimizedBind (k v) f)
| tmBind v k => fun f => tmOptimizedBind v (fun v => tmBind (k v) f)
| tmFail msg => fun _ => tmFail msg
| v => tmBind v
end.

(** Flatten nested [tmBind] *)
Fixpoint tmOptimize'@{t u} {A B : Type@{t}} (v : TemplateMonad@{t u} A) : (A -> TemplateMonad@{t u} B) -> TemplateMonad@{t u} B
:= match v with
| tmReturn x => fun f => f x
| tmBind v k => fun f => tmOptimize' v (fun v => tmOptimize' (k v) f)
| tmFail msg => fun _ => tmFail msg
| v => tmBind v
end.
Definition tmOptimize@{t u} {A : Type@{t}} (v : TemplateMonad@{t u} A) : TemplateMonad@{t u} A
:= tmOptimizedBind v tmReturn.
:= tmOptimize' v tmReturn.

(** This allow to use notations of MonadNotation *)
Definition TemplateMonad_UnoptimizedMonad@{t u} : Monad@{t u} TemplateMonad@{t u} :=
Expand Down