From 5145dd3aa0c02c9fc496d1432fc4410674206e1d Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 20 Feb 2017 00:05:31 -0800 Subject: Import Upstream version 3a2 --- factor.txi | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'factor.txi') diff --git a/factor.txi b/factor.txi index 38c0dd1..90569ea 100644 --- a/factor.txi +++ b/factor.txi @@ -22,6 +22,7 @@ Returns the value (+1, @minus{}1, or 0) of the Jacobi-Symbol of exact non-negative integer @var{p} and exact positive odd integer @var{q}. @end defun + @defvar prime:trials @var{prime:trials} the maxinum number of iterations of Solovay-Strassen that will @@ -35,6 +36,7 @@ There is a slight chance @code{(expt 2 (- prime:trials))} that a composite will return @code{#t}. @end defun + @defun primes< start count Returns a list of the first @var{count} prime numbers less than @@ -43,14 +45,17 @@ less than @var{start}, then the returned list will have fewer than @var{start} elements. @end defun + @defun primes> start count Returns a list of the first @var{count} prime numbers greater than @var{start}. @end defun + @defun factor k Returns a list of the prime factors of @var{k}. The order of the factors is unspecified. In order to obtain a sorted list do @code{(sort! (factor @var{k}) <)}. @end defun + -- cgit v1.2.3