1NAME 2 israndom - whether a value is a Blum generator state 3 4SYNOPSIS 5 israndom(x) 6 7TYPES 8 x any, &any 9 10 return int 11 12DESCRIPTION 13 Determine if x is a Blum-Blum-Shub pseudo-random number generator state. 14 This function will return 1 if x is a file, 0 otherwise. 15 16EXAMPLE 17 ; a = srandom(0) 18 ; print israndom(a), israndom(0); 19 1 0 20 21LIMITS 22 none 23 24LINK LIBRARY 25 none 26 27SEE ALSO 28 seed, random, srandom, randombit, 29 isassoc, isatty, isblk, isconfig, isdefined, iserror, iseven, isfile, 30 ishash, isident, isint, islist, ismat, ismult, isnull, isnum, isobj, 31 isobjtype, isodd, isprime, isrand, isreal, isrel, 32 issimple, issq, isstr, istype 33 34## Copyright (C) 1999-2006 Landon Curt Noll 35## 36## Calc is open software; you can redistribute it and/or modify it under 37## the terms of the version 2.1 of the GNU Lesser General Public License 38## as published by the Free Software Foundation. 39## 40## Calc is distributed in the hope that it will be useful, but WITHOUT 41## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 42## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General 43## Public License for more details. 44## 45## A copy of version 2.1 of the GNU Lesser General Public License is 46## distributed with calc under the filename COPYING-LGPL. You should have 47## received a copy with calc; if not, write to Free Software Foundation, Inc. 48## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 49## 50## Under source code control: 1995/11/11 05:09:41 51## File existed as early as: 1995 52## 53## chongo <was here> /\oo/\ http://www.isthe.com/chongo/ 54## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/ 55