2014-11-30 21:16:01 -08:00
|
|
|
prelude
|
2014-06-26 09:31:27 -07:00
|
|
|
precedence `+`:65
|
|
|
|
|
|
|
|
namespace nat
|
2014-10-02 16:20:52 -07:00
|
|
|
constant nat : Type.{1}
|
|
|
|
constant add : nat → nat → nat
|
2014-06-26 09:31:27 -07:00
|
|
|
infixl + := add
|
2014-08-07 16:59:08 -07:00
|
|
|
end nat
|
2014-06-26 09:31:27 -07:00
|
|
|
|
|
|
|
namespace int
|
2014-09-03 16:00:38 -07:00
|
|
|
open nat (nat)
|
2014-10-02 16:20:52 -07:00
|
|
|
constant int : Type.{1}
|
|
|
|
constant add : int → int → int
|
2014-06-26 09:31:27 -07:00
|
|
|
infixl + := add
|
2014-10-02 16:20:52 -07:00
|
|
|
constant of_nat : nat → int
|
2015-01-24 20:23:21 -08:00
|
|
|
attribute of_nat [coercion]
|
2014-08-07 16:59:08 -07:00
|
|
|
end int
|
2014-06-26 09:31:27 -07:00
|
|
|
|
2014-09-03 16:00:38 -07:00
|
|
|
-- Open "only" the notation and declarations from the namespaces nat and int
|
2014-12-17 18:28:38 -08:00
|
|
|
open [notations] nat
|
|
|
|
open [notations] int
|
2014-09-03 16:00:38 -07:00
|
|
|
open [decls] nat
|
|
|
|
open [decls] int
|
2014-06-26 09:31:27 -07:00
|
|
|
|
2014-10-02 16:20:52 -07:00
|
|
|
constants n m : nat
|
|
|
|
constants i j : int
|
2014-06-26 09:31:27 -07:00
|
|
|
check n + m
|
|
|
|
check i + j
|
|
|
|
|
2014-09-03 16:00:38 -07:00
|
|
|
-- The following check does not work, since we are not open the coercions
|
2014-06-26 09:31:27 -07:00
|
|
|
-- check n + i
|
|
|
|
|
|
|
|
-- Here is a possible trick for this kind of configuration
|
|
|
|
definition add_ni (a : nat) (b : int) := (of_nat a) + b
|
|
|
|
definition add_in (a : int) (b : nat) := a + (of_nat b)
|
|
|
|
infixl + := add_ni
|
|
|
|
infixl + := add_in
|
|
|
|
|
|
|
|
check i + n
|
|
|
|
check n + i
|