|
|
|
@ -21,26 +21,25 @@
|
|
|
|
|
(for/list ([pr (in-combinations vs 2)])
|
|
|
|
|
($constraint pr not=)))
|
|
|
|
|
|
|
|
|
|
(define (smm-func s e n d m o r y)
|
|
|
|
|
(= (+ (word-value s e n d) (word-value m o r e)) (word-value m o n e y)))
|
|
|
|
|
|
|
|
|
|
(define csp (make-csp vds (append
|
|
|
|
|
|
|
|
|
|
(define smm (make-csp vds (append
|
|
|
|
|
alldiffs
|
|
|
|
|
(list
|
|
|
|
|
($constraint vs smm-func)
|
|
|
|
|
($constraint '(s) positive?)
|
|
|
|
|
($constraint '(m) (λ (x) (= 1 x)))
|
|
|
|
|
($constraint '(m) positive?)
|
|
|
|
|
($constraint '(d e y) (λ (d e y) (= (modulo (+ d e) 10) y)))
|
|
|
|
|
($constraint '(n d r e y) (λ (n d r e y)
|
|
|
|
|
(= (modulo (+ (word-value n d) (word-value r e)) 100)
|
|
|
|
|
(word-value e y))))
|
|
|
|
|
($constraint '(e n d o r y) (λ (e n d o r y)
|
|
|
|
|
(= (modulo (+ (word-value e n d) (word-value o r e)) 1000) (word-value n e y))))))))
|
|
|
|
|
(= (modulo (+ (word-value e n d) (word-value o r e)) 1000) (word-value n e y))))
|
|
|
|
|
($constraint '(s e n d m o r y) (λ (s e n d m o r y)
|
|
|
|
|
(= (+ (word-value s e n d) (word-value m o r e))
|
|
|
|
|
(word-value m o n e y))))))))
|
|
|
|
|
|
|
|
|
|
(parameterize ([current-select-variable mrv]
|
|
|
|
|
[current-order-values lcv]
|
|
|
|
|
[current-inference mac])
|
|
|
|
|
(time (solve csp)))
|
|
|
|
|
(nassigns csp)
|
|
|
|
|
(nchecks csp)
|
|
|
|
|
(reset! csp)
|
|
|
|
|
(time (solve smm)))
|
|
|
|
|
(nassigns smm)
|
|
|
|
|
(nchecks smm)
|
|
|
|
|
(reset! smm)
|