Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pyecm(1) [debian man page]

PYECM(1)						      General Commands Manual							  PYECM(1)

NAME
pyecm - Number factorization with the Elliptic Curve Method SYNOPSIS
pyecm [OPTIONS] [FACTORS]... DESCRIPTION
pyecm factors numbers using the Elliptic Curve Method (ECM). If FACTORS is given, it will factor each one of these. Otherwise, it will fac- tor from standard input. You can type "exit" to quit pyecm at any time. -h, --help Get help using pyecm. --portion=num Does only part of the work for factoring, corresponding to what fraction of the total work the machine is doing. Useful for working in parallel. For example, if there are three machines: 1GHz, 1GHz, and 2GHz, print should be set to 0.25 for the 1GHz machines and 0.5 for the 2GHz machine. Implies -r and -v. -r is needed to avoid duplicating work and -v is needed to report results. --ov=num Sets the value of the internal parameter ov, which determines the trade-off between memory and time usage. Do not touch if you do not know what you are doing. Please read all the documentation and understand the full implications of the parameter before using this switch. -n, --noverbose Terse. On by default. Needed to cancel the -v from the --portion or --random switches. If both -n and -v are specified, the one specified last takes precedence. -r, --random Chooses random values for sigma, an internal parameter in the calculation. Implies -v; if you're doing something random, you want to know what's happening. -v, --verbose Explains what is being done with intermediate calculations and results. EXAMPLES
pyecm 2^3-1 1000 "(3^13+2)*5" Factor 7, 1000, then 7971625. pyecm Get factors from standard input. AUTHOR
Written by Eric Larson and Martin Kelly. REPORTING BUGS
Please send bugs to Eric Larson <elarson3@uoregon.edu>. pyecm 2.0.1 PYECM(1)

Check Out this Related Man Page

rand(3C)																  rand(3C)

NAME
rand(), rand_r(), srand() - simple random-number generator SYNOPSIS
DESCRIPTION
uses a multiplicative, congruential, random-number generator with period 2^32 that returns successive pseudo-random numbers in the range from 0 to 2^15-1. can be called at any time to reset the random-number generator to a random starting point. The generator is initially seeded with a value of 1. returns a random number at the address pointed to by the randval parameter. The seed parameter can be set at any time to start the random- number generator at an arbitrary point. Note The spectral properties of leave a great deal to be desired. provides a much better, though more elaborate, random-number generator (see drand48(3C)). RETURN VALUE
If seed or randval is NULL, returns 0. Otherwise, returns a psuedo-random integer. EXAMPLES
The following: int x, y; srand(10); x = rand(); y = rand(); would produce the same results as: int x, y, s = 10; x=rand_r(&s); y=rand_r(&s); WARNINGS
Users of should note that rand_r() now conforms with POSIX.1c. The old prototype of is supported for compatibility with existing DCE applications only. SEE ALSO
drand48(3C), random(3M), thread_safety(5), random(7). STANDARDS CONFORMANCE
rand(3C)
Man Page

4 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Looking for hp 745i/100 machines to trade for HP B180s

I'm looking for some HP 745i/100 machines. I will trade for used HP B180 machines. (2 Replies)
Discussion started by: hohumbgdl
2 Replies

2. UNIX for Dummies Questions & Answers

Sftp Help Needed!!!!!!!

Thank you for the help (2 Replies)
Discussion started by: scooter17
2 Replies

3. UNIX Benchmarks

FreeBSD `buildkernel' and `buildworld' Benchmarks

Just for fun, I thought I'd post my output from `time make -j4 buildworld' and `time make -j4 buildkernel' and see if anyone else had any good times. The machine is an Intel Core2Duo 2.2GHz with 2048MB DDR3. -------------------------------------------------------------- >>> Kernel build... (1 Reply)
Discussion started by: glen.barber
1 Replies

4. Solaris

Help Needed in understanding this command

(0 Replies)
Discussion started by: DSDexter
0 Replies