aboutsummaryrefslogtreecommitdiff
path: root/src/Util/ParseTaps.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2018-02-14 14:46:12 -0500
committerGravatar Jason Gross <jgross@mit.edu>2018-02-14 14:46:12 -0500
commit1e6400bd90760d34cc3a28d7c7c32be31b75babf (patch)
treee3078614a392853176e39b1b49c329d0303da61c /src/Util/ParseTaps.v
parent54a88659aedb098014cfc03ba3ca627647dfc665 (diff)
Add a file to parse taps with Coq notations
Diffstat (limited to 'src/Util/ParseTaps.v')
-rw-r--r--src/Util/ParseTaps.v40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/Util/ParseTaps.v b/src/Util/ParseTaps.v
new file mode 100644
index 000000000..35bc380fd
--- /dev/null
+++ b/src/Util/ParseTaps.v
@@ -0,0 +1,40 @@
+Require Import Coq.Lists.List.
+Require Import Coq.ZArith.BinInt.
+Require Import Crypto.Util.Notations.
+Import ListNotations.
+
+Local Open Scope list_scope.
+Local Open Scope Z_scope.
+
+Definition tap := (Z * Z)%type.
+Definition taps := list tap.
+Delimit Scope tap_scope with tap.
+Delimit Scope taps_scope with taps.
+Bind Scope tap_scope with tap.
+Bind Scope taps_scope with taps.
+
+Coercion Z_to_tap (v : Z) : tap := (v, 0).
+Coercion tap_to_taps (v : tap) : taps := [v].
+Definition make_tap (b e : Z) : tap := (b, e).
+
+Definition scmul_tap (c : Z) (t : tap) : tap
+ := let '(c', e) := t in (c * c', e).
+Definition neg_tap (t : tap) : tap
+ := let '(c, e) := t in (-c, e).
+Definition add_taps : taps -> taps -> taps := @List.app _.
+
+Notation "b ^ e" := (make_tap (Z.log2 b) e) : tap_scope.
+Notation "2 ^ e" := [(1, e%Z)] (only printing) : tap_scope.
+Notation "x * y" := (scmul_tap x y) : tap_scope.
+Notation "- a" := (neg_tap a) : tap_scope.
+
+Notation "b ^ e" := (b^e)%tap (only printing) : taps_scope.
+Notation "x * y" := (x * y)%tap (only printing) : taps_scope.
+Notation "- a" := (-a)%tap (only printing) : taps_scope.
+Notation "b ^ e" := (tap_to_taps (b ^ e)) : taps_scope.
+Notation "x * y" := (tap_to_taps (x * y)) : taps_scope.
+Notation "- a" := (tap_to_taps (-a)) : taps_scope.
+
+Notation "a + b" := (add_taps a b) : taps_scope.
+Notation "a - b" := (add_taps a (neg_tap (Z_to_tap (Zpos b)))) : taps_scope.
+Notation "a - b" := (add_taps a (- b)) : taps_scope.