aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_CoqProject1
-rw-r--r--src/Reflection/Z/Bounds/MapCastByDeBruijn.v27
2 files changed, 28 insertions, 0 deletions
diff --git a/_CoqProject b/_CoqProject
index 957367c6f..8375be807 100644
--- a/_CoqProject
+++ b/_CoqProject
@@ -211,6 +211,7 @@ src/Reflection/Z/OpInversion.v
src/Reflection/Z/Reify.v
src/Reflection/Z/Syntax.v
src/Reflection/Z/Bounds/Interpretation.v
+src/Reflection/Z/Bounds/MapCastByDeBruijn.v
src/Reflection/Z/Bounds/Relax.v
src/Reflection/Z/Bounds/Pipeline/Glue.v
src/Reflection/Z/Interpretations128/Relations.v
diff --git a/src/Reflection/Z/Bounds/MapCastByDeBruijn.v b/src/Reflection/Z/Bounds/MapCastByDeBruijn.v
new file mode 100644
index 000000000..f3e501008
--- /dev/null
+++ b/src/Reflection/Z/Bounds/MapCastByDeBruijn.v
@@ -0,0 +1,27 @@
+Require Import Crypto.Reflection.Syntax.
+Require Import Crypto.Reflection.Z.MapCastByDeBruijn.
+Require Import Crypto.Reflection.Z.Syntax.
+Require Import Crypto.Reflection.Z.Syntax.Util.
+Require Import Crypto.Reflection.Z.Bounds.Interpretation.
+
+Section language.
+ Context (genericize_op : forall t tR (opc : op t tR)
+ (args_bs : interp_flat_type Bounds.interp_base_type t),
+ op (SmartMap.SmartFlatTypeMap (fun _ => Bounds.bounds_to_base_type) args_bs)
+ (SmartMap.SmartFlatTypeMap (fun _ => Bounds.bounds_to_base_type) (Bounds.interp_op opc args_bs))).
+ Context {t : type base_type}.
+
+ Definition MapCastCompile := @MapCastCompile t.
+ Definition MapCastDoCast
+ := @MapCastDoCast
+ (@Bounds.interp_base_type) (@Bounds.interp_op)
+ (fun _ => @Bounds.bounds_to_base_type)
+ (fun _ _ opc _ => @genericize_op _ _ opc _)
+ t.
+ Definition MapCastDoInterp
+ := @MapCastDoInterp
+ (@Bounds.interp_base_type) (fun _ => @Bounds.bounds_to_base_type)
+ t.
+ Definition MapCast e input_bounds
+ := MapCastDoInterp input_bounds (MapCastDoCast input_bounds (MapCastCompile e)).
+End language.