Only set random-seed once in the whole test submodule.

This commit is contained in:
Sergiu Ivanov 2023-03-24 16:05:52 +01:00
parent 59b90d4c12
commit e2e0ee6903
1 changed files with 3 additions and 3 deletions

View File

@ -1059,9 +1059,10 @@
([st (build-all-states arg-domains)])
(list st (random-ref func-domain)))))
(module+ test (random-seed 1))
(module+ test
(test-case "random-function/state"
(random-seed 1)
(define doms (hash 'a '(1 2) 'b '(3 4)))
(define f (random-function/state doms '(e f)))
(check-equal? (tabulate-state+headers f doms)
@ -1073,10 +1074,9 @@
(module+ test
(test-case "random-boolean-function/state"
(random-seed 1)
(define f (random-boolean-function/state '(x1 x2)))
(check-equal? (tabulate-state+headers/boolean f '(x1 x2))
'((x1 x2 f1) (#f #f #f) (#f #t #f) (#t #f #t) (#t #t #f)))))
'((x1 x2 f1) (#f #f #f) (#f #t #f) (#t #f #t) (#t #t #t)))))
)
(require 'typed)