提交 5efa13ca 编写于 作者: B Ben Laurie

Add option to run all prime tests.

上级 8927c278
......@@ -1018,6 +1018,11 @@ int MAIN(int argc, char **argv)
prime_doit[D_PRIME_TRIAL_DIVISION_RETRY] = 1;
else if (strcmp(*argv,"prime-coprime") == 0)
prime_doit[D_PRIME_COPRIME] = 1;
else if (strcmp(*argv,"prime") == 0)
{
for (i=0; i < PRIME_NUM; i++)
prime_doit[i]=1;
}
else
{
BIO_printf(bio_err,"Error: bad option or value\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册