2014-06-26 16:31:27 +00:00
|
|
|
precedence `+`:65
|
|
|
|
|
|
|
|
namespace nat
|
|
|
|
variable nat : Type.{1}
|
|
|
|
variable add : nat → nat → nat
|
|
|
|
infixl + := add
|
2014-08-07 23:59:08 +00:00
|
|
|
end nat
|
2014-06-26 16:31:27 +00:00
|
|
|
|
|
|
|
namespace int
|
2014-09-03 23:00:38 +00:00
|
|
|
open nat (nat)
|
2014-06-26 16:31:27 +00:00
|
|
|
variable int : Type.{1}
|
|
|
|
variable add : int → int → int
|
|
|
|
infixl + := add
|
|
|
|
variable of_nat : nat → int
|
|
|
|
coercion of_nat
|
2014-08-07 23:59:08 +00:00
|
|
|
end int
|
2014-06-26 16:31:27 +00:00
|
|
|
|
2014-09-03 23:00:38 +00:00
|
|
|
-- Open "only" the notation and declarations from the namespaces nat and int
|
|
|
|
open [notation] nat
|
|
|
|
open [notation] int
|
|
|
|
open [decls] nat
|
|
|
|
open [decls] int
|
2014-06-26 16:31:27 +00:00
|
|
|
|
|
|
|
variables n m : nat
|
|
|
|
variables i j : int
|
|
|
|
check n + m
|
|
|
|
check i + j
|
|
|
|
|
2014-09-03 23:00:38 +00:00
|
|
|
-- The following check does not work, since we are not open the coercions
|
2014-06-26 16:31:27 +00: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
|