diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-11-28 11:45:46 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-11-28 11:45:46 -0500 |
commit | 4c85cc245d53261ccbd1b67140024fd54bdedb74 (patch) | |
tree | f437cce68202977850d69ee1f04bd85633d4f003 /lib | |
parent | 8d73306d8b1154b2a91fe8d38ebb1962d81ac384 (diff) |
Rename Basis.exp to Basis.pow, to avoid confusion with 'expression'; add a test case for it
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ur/basis.urs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 67564108..339e8f0a 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -42,7 +42,7 @@ val minus : t ::: Type -> num t -> t -> t -> t val times : t ::: Type -> num t -> t -> t -> t val divide : t ::: Type -> num t -> t -> t -> t val mod : t ::: Type -> num t -> t -> t -> t -val exp : t ::: Type -> num t -> t -> t -> t +val pow : t ::: Type -> num t -> t -> t -> t val num_int : num int val num_float : num float |