]> gitweb.factorcode.org Git - factor.git/blob - extra/math/primes/twins/twins-tests.factor
Switch to https urls
[factor.git] / extra / math / primes / twins / twins-tests.factor
1 ! Copyright (C) 2012 John Benediktsson
2 ! See https://factorcode.org/license.txt for BSD license
3 USING: math.primes.twins tools.test ;
4
5 { { } } [ 3 twin-primes-upto ] unit-test
6 { { V{ 3 5 } V{ 5 7 } V{ 11 13 } } } [ 13 twin-primes-upto ] unit-test
7
8 { t } [ 3 5 twin-primes? ] unit-test
9 { f } [ 2 4 twin-primes? ] unit-test
10 { f } [ 3 7 twin-primes? ] unit-test