Last active
August 29, 2015 14:25
-
-
Save ikedaisuke/9a2445879612de12239c to your computer and use it in GitHub Desktop.
プログラミング言語の基礎概念 p.4 導出システム Nat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; try the following code at http://rise4fun.com/z3/tutorial | |
; data type Nat | |
(declare-datatypes () ((Nat zero (succ (pred Nat))))) | |
; plus as a rule | |
(declare-fun plus (Nat Nat Nat) Bool) | |
; rule P-Zero | |
(assert (forall ((n Nat)) (plus zero n n))) | |
; rule P-succ | |
(assert (forall ((m Nat) (n Nat) (r Nat)) | |
(=> (plus m n r) (plus (succ m) n (succ r))))) | |
; step 0 | |
(assert (plus zero zero zero)) | |
; (check-sat) | |
; step 1 | |
(assert (plus zero (succ zero) (succ zero))) | |
; step 2 | |
(assert (plus (succ zero) (succ zero) (succ (succ zero)))) | |
(check-sat) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
すみません、この定義では不十分でした | |
https://twitter.com/ikegami__/status/624498576865890304 | |
https://twitter.com/ikegami__/status/624507334304239617 | |
https://twitter.com/ikegami__/status/624508974977564672 | |
http://rise4fun.com/z3/tutorial | |
などなど… | |
だれか Z3 でできるよということであれば | |
@ikegami__ | |
に教えてくれると嬉しいです | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment