2014-12-01 05:16:01 +00:00
|
|
|
prelude
|
2014-06-26 17:05:00 +00:00
|
|
|
precedence `+`:65
|
|
|
|
|
|
|
|
namespace nat
|
2014-10-02 23:20:52 +00:00
|
|
|
constant nat : Type.{1}
|
|
|
|
constant add : nat → nat → nat
|
2014-06-26 17:05:00 +00:00
|
|
|
infixl + := add
|
2014-08-07 23:59:08 +00:00
|
|
|
end nat
|
2014-06-26 17:05:00 +00:00
|
|
|
|
|
|
|
namespace int
|
2014-09-03 23:00:38 +00:00
|
|
|
open nat (nat)
|
2014-10-02 23:20:52 +00:00
|
|
|
constant int : Type.{1}
|
|
|
|
constant add : int → int → int
|
2014-06-26 17:05:00 +00:00
|
|
|
infixl + := add
|
2014-10-02 23:20:52 +00:00
|
|
|
constant of_nat : nat → int
|
2014-06-26 17:05:00 +00:00
|
|
|
coercion of_nat
|
2014-08-07 23:59:08 +00:00
|
|
|
end int
|
2014-06-26 17:05:00 +00:00
|
|
|
|
|
|
|
section
|
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 17:05:00 +00:00
|
|
|
|
2014-10-09 14:13:06 +00:00
|
|
|
variables n m : nat
|
|
|
|
variables i j : int
|
2014-06-26 17:05:00 +00:00
|
|
|
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 17:05:00 +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
|
2014-07-19 08:55:34 +00:00
|
|
|
check add_ni
|
2014-06-26 17:05:00 +00:00
|
|
|
|
|
|
|
check i + n
|
|
|
|
check n + i
|
|
|
|
end
|