#lang setup/infotab (define name "Complimentary Multiply-With-Carry Psuedo-Random Number Generator") (define blurb '("provides the function " (code "prime?") "which implements the miller-rabin primality test. " "It takes a number " (code "n") "and the number of times to test it " (code "k") "and returns whether or not the number " (code "n") "is (probably) prime. Therefore, its contract can be thus given: " (code "(prime? (-> integer? integer? boolean?)") ".")) (define primary-file "is-prime.rkt") (define categories '(system devtools scientific misc)) (define release-notes '((p "initial release. "))) (define version "0.1")