1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
|
/* Simple expression parser for GMP-ECM.
Copyright 2003, 2004, 2005 Jim Fougeron, Paul Zimmermann and Alexander Kruppa.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program; see the file COPYING. If not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02111-1307, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "ecm-ecm.h"
#ifdef HAVE_STRINGS_H
# include <strings.h> /* for strncasecmp */
#endif
#ifdef HAVE_CTYPE_H
# include <ctype.h>
#endif
/*****************************************************************
* Syntax for this VERY simple recursive expression parser: *
* *
* ( or [ or { along with ) or ] or } are valid for grouping *
* Normal "simple" operators: + - * / (. can be used for *) *
* Module: n%m 345%11 *
* Unary minus is supported: -n -500 *
* Exponentation: n^m 2^500 *
* Simple factorial: n! 53! == 1*2*3*4...*52*53 *
* Multi-factorial: n!m 15!3 == 15.12.9.6.3 *
* Simple Primorial: n# 11# == 2*3*5*7*11 *
* Reduced Primorial: n#m 17#5 == 5.7.11.13.17 *
* *
* Adding (working on these at least: *
* Phi(x,n) *
* *
* NOTE Lines ending in a \ character are "joined" *
* NOTE Lines starting with #are comments *
* NOTE C++ // single line comments (rest of line is a comment) *
* *
****************************************************************/
/* value only used by the expression parser */
static mpz_t t, mpOne;
static char *expr_str;
static void eval_power (mpz_t prior_n, mpz_t n,char op);
static void eval_product (mpz_t prior_n, mpz_t n,char op);
static void eval_sum (mpz_t prior_n, mpz_t n,char op);
static int eval_Phi (mpz_t prior_n, mpz_t n, int ParamCnt);
static int eval_2 (int bInFuncParams);
#if 0 /* strncasecmp is a required function in configure.in */
#if defined (_MSC_VER) || defined (__MINGW32__)
#define strncasecmp strnicmp
#endif
#endif
/**************************************/
/* Main expression evalation function */
/* This is the function that the app */
/* calls to read the expression line */
/**************************************/
int eval (mpcandi_t *n, FILE *fd, int primetest)
{
int ret;
int nMaxSize = 2000, nCurSize = 0;
int c;
char *expr = (char *) malloc (nMaxSize + 1);
if (expr == NULL)
{
fprintf (stderr, "Error: not enough memory\n");
exit (EXIT_FAILURE);
}
/* Lines ending in '\\' are "joined" as a single longer line */
JoinLinesLoop:;
c = fgetc (fd);
if (c == '#')
{
ChompLine:;
do
c = fgetc (fd);
while (c != EOF && !IS_NEWLINE(c));
if (IS_NEWLINE(c))
goto JoinLinesLoop;
}
while (c != EOF && !IS_NEWLINE(c) && c != ';')
{
if (c == '/')
{
/* This might be a C++ // comment or it might be a / division operator.
Check it out, and if it is a comment, then "eat it" */
int peek_c = fgetc (fd);
if (peek_c == '/')
/* Got a C++ single line comment, so Chomp the line */
goto ChompLine;
/* Put the char back on the file, then allow the code to add the '/' char to the buffer */
ungetc (peek_c, fd);
}
/* strip space and tabs out here, and then we DON'T have to mess with them in the rest of the parser */
if (!isspace (c))
expr[nCurSize++] = (char) c;
if (nCurSize == nMaxSize)
{
char *cp;
nMaxSize += nMaxSize / 2;
cp = (char *) realloc (expr, nMaxSize + 1);
if (!cp)
{
free (expr);
fprintf (stderr, "Severe warning!, out of core memory reading number!\n");
exit (EXIT_FAILURE);
}
expr = cp;
}
c = fgetc (fd);
}
expr[nCurSize] = 0;
if (!nCurSize)
ret = 0;
else
{
if (expr[nCurSize-1] == '\\')
{
/* remove the '\\' char, and then process the next line */
expr[--nCurSize] = 0;
goto JoinLinesLoop;
}
if (c == ';')
ungetc (c, fd);
mpz_init (t);
expr_str = expr;
ret = eval_2 (0);
if (ret)
{
char *s;
char *cpTmpExpr = expr;
s = mpz_get_str (NULL, 10, t);
if (!strcmp(s, cpTmpExpr))
cpTmpExpr = NULL;
ret = mpcandi_t_add_candidate (n, t, cpTmpExpr, primetest);
FREE (s, strlen (s) + 1);
}
mpz_clear(t);
}
free(expr);
return ret;
}
int eval_str (mpcandi_t *n, char *cp, int primetest, char **EndChar)
{
int ret;
int nMaxSize=2000, nCurSize=0;
char *c;
char *expr = (char *) malloc(nMaxSize+1);
if (expr == NULL)
{
fprintf (stderr, "Error: not enough memory\n");
exit (EXIT_FAILURE);
}
/* Lines ending in '\\' are "joined" as a single longer line */
c = cp;
JoinLinesLoop:;
if (*c == '#')
{
do
++c;
while (*c && !IS_NEWLINE(*c));
if (IS_NEWLINE(*c))
goto JoinLinesLoop;
}
while (*c && !IS_NEWLINE(*c) && *c != ';')
{
/* strip space and tabs out here, and then we DON'T have to mess with them in the rest of the parser */
if (!isspace(*c))
expr[nCurSize++] = *c;
if (nCurSize == nMaxSize)
{
char *cp;
nMaxSize += 5000;
cp = (char *) realloc (expr, nMaxSize + 1);
if (!cp)
{
free(expr);
fprintf(stderr, "Severe warning!, out of core memory reading number!\n");
exit (EXIT_FAILURE);
}
expr = cp;
}
++c;
}
expr[nCurSize] = 0;
if (!nCurSize)
ret = 0;
else
{
if (expr[nCurSize-1] == '\\')
{
/* remove the '\\' char, and then process the next line */
expr[--nCurSize] = 0;
goto JoinLinesLoop;
}
if (*c != ';')
++c;
mpz_init(t);
expr_str = expr;
ret = eval_2(0);
if (ret)
{
char *s;
char *cpTmpExpr = expr;
s = mpz_get_str (NULL, 10, t);
if (!strcmp(s, cpTmpExpr))
cpTmpExpr = NULL;
ret = mpcandi_t_add_candidate(n, t, cpTmpExpr, primetest);
FREE (s, strlen (s) + 1);
}
mpz_clear(t);
}
free(expr);
if (EndChar && *EndChar)
*EndChar = c;
return ret;
}
void eval_power (mpz_t prior_n, mpz_t n,char op)
{
#if defined (DEBUG_EVALUATOR)
if ('#'==op || '^'==op || '!'==op || '@'==op || '$'==op)
{
fprintf (stderr, "eval_power ");
mpz_out_str(stderr, 10, prior_n);
fprintf (stderr, "%c", op);
mpz_out_str(stderr, 10, n);
fprintf (stderr, "\n");
}
#endif
if ('^'==op)
mpz_pow_ui(n,prior_n,mpz_get_ui(n));
else if ('!'==op) /* simple factorial (syntax n! example: 7! == 1*2*3*4*5*6*7) */
mpz_fac_ui(n,mpz_get_ui(n));
else if ('@'==op) /* Multi factorial (syntax n!prior_n. example: 15!3 == 15*12*9*6*3) */
{
long nCur;
unsigned long nDecr;
nCur = mpz_get_si(prior_n);
nDecr = mpz_get_ui(n);
mpz_set_ui(n,1);
/*printf ("Multi-factorial %ld!%ld\n", nCur, nDecr);*/
while (nCur > 1)
{
/* This could be done much more efficiently (bunching mults using smaller "built-ins"), but I am not going to bother for now */
mpz_mul_ui(n,n,nCur);
nCur -= nDecr;
}
}
else if ('#'==op) /* simple primorial (syntax n# example: 11# == 2*3*5*7*11 */
{
long nMax;
double p;
nMax = mpz_get_si(n);
mpz_set_ui(n,1);
getprime_clear (); /* free the prime tables, and reinitialize */
for (p = 2.0; p <= nMax; p = getprime ())
/* This could be done much more efficiently (bunching mults using smaller "built-ins"), but I am not going to bother for now */
mpz_mul_ui(n,n,(unsigned)p);
}
else if ('$'==op) /* reduced primorial (syntax n#prior_n example: 13#5 == (5*7*11*13) */
{
double p;
long nMax;
unsigned long nStart;
nMax = mpz_get_si(prior_n);
nStart = mpz_get_ui(n);
mpz_set_ui(n,1);
getprime_clear (); /* free the prime tables, and reinitialize */
p = getprime (nStart);
/*printf ("Reduced-primorial %ld#%ld\n", nMax, nStart);*/
for (; p <= nMax; p = getprime (p))
{
/* Unfortunately, the SoE within GMP-ECM does not always start
correctly, so we have to skip the low end stuff by hand */
if (p >= nStart)
/* This could be done much more efficiently (bunching mults using smaller "built-ins"), but I am not going to bother for now */
mpz_mul_ui(n,n,(unsigned)p);
}
}
}
void
eval_product (mpz_t prior_n, mpz_t n, char op)
{
#if defined (DEBUG_EVALUATOR)
if ('*'==op || '.'==op || '/'==op || '%'==op)
{
fprintf (stderr, "eval_product ");
mpz_out_str(stderr, 10, prior_n);
fprintf (stderr, "%c", op);
mpz_out_str(stderr, 10, n);
fprintf (stderr, "\n");
}
#endif
if ('*' == op || '.' == op)
mpz_mul (n, prior_n, n);
else if ('/' == op)
{
mpz_t r;
mpz_init (r);
mpz_tdiv_qr (n, r, prior_n, n);
if (mpz_cmp_ui (r, 0) != 0)
{
fprintf (stderr, "Parsing Error: inexact division\n");
exit (EXIT_FAILURE);
}
mpz_clear (r);
}
else if ('%' == op)
mpz_tdiv_r (n, prior_n, n);
}
void eval_sum (mpz_t prior_n, mpz_t n,char op)
{
#if defined (DEBUG_EVALUATOR)
if ('+'==op || '-'==op)
{
fprintf (stderr, "eval_sum ");
mpz_out_str(stderr, 10, prior_n);
fprintf (stderr, "%c", op);
mpz_out_str(stderr, 10, n);
fprintf (stderr, "\n");
}
#endif
if ('+' == op)
mpz_add(n,prior_n,n);
else if ('-' == op)
mpz_sub(n,prior_n,n);
}
int eval_Phi (mpz_t b, mpz_t n, int ParamCnt)
{
int factors[200];
unsigned dwFactors=0, dw;
int B;
double p;
mpz_t D, T, org_n;
if (ParamCnt == 0)
{
fprintf (stderr, "\nParsing Error - the Phi function (in ECM) requires 2 parameters\n");
return 0;
}
if (mpz_cmp_ui(n, 1) == 0)
{
/* return value is 1 if b is composite, or b if b is prime */
int isPrime = mpz_probab_prime_p (b, PROBAB_PRIME_TESTS);
if (isPrime)
mpz_set(n, b);
else
mpz_set(n, mpOne);
return 1;
}
if (mpz_cmp_si(n, -1) == 0)
{
/* this is actually INVALID, but it is easier to simply */
fprintf (stderr, "\nParsing Error - Invalid parameter passed to the Phi function\n");
return 0;
}
/* OK parse the Phi out now */
if (mpz_cmp_ui(b, 0) == 0)
{
/* this is valid, but return that it is NOT */
mpz_set(n, mpOne);
return 0;
}
if (mpz_cmp_ui(b, 1) == 0)
{
if (mpz_cmp_ui(n, 1) != 0)
mpz_sub_ui(n, n, 1);
return 1;
}
/* Ok, do the real h_primative work, since we are not one of the trivial case */
B = mpz_get_si(b);
if (mpz_cmp_ui(b, B))
{
fprintf (stderr, "\nParsing Error - Invalid parameter passed to the Phi function (first param B too high)\n");
return 0;
}
/* Obtain the factors of B */
getprime_clear (); /* free the prime tables, and reinitialize */
for (p = 2.0; p <= B; p = getprime ())
{
if (B % (int) p == 0)
{
/* Add the factor one time */
factors[dwFactors++] = (int) p;
/* but be sure to totally remove it */
do { B /= (int) p; } while (B % (int) p == 0);
}
}
B = mpz_get_si(b);
mpz_init_set(org_n, n);
mpz_set_ui(n, 1);
mpz_init_set_ui(D, 1);
mpz_init(T);
for(dw=0;(dw<(1U<<dwFactors)); dw++)
{
/* for all Mobius terms */
int iPower=B;
int iMobius=0;
unsigned dwIndex=0;
unsigned dwMask=1;
while(dwIndex < dwFactors)
{
if(dw&dwMask)
{
/* printf ("iMobius = %d iPower = %d, dwIndex = %d ", iMobius, iPower, dwIndex); */
iMobius++;
iPower/=factors[dwIndex];
/* printf ("Then iPower = %d\n", iPower); */
}
dwMask<<=1;
++dwIndex;
}
/*
fprintf (stderr, "Taking ");
mpz_out_str(stderr, 10, org_n);
fprintf (stderr, "^%d-1\n", iPower);
*/
mpz_pow_ui(T, org_n, iPower);
mpz_sub_ui(T, T, 1);
if(iMobius&1)
{
/*
fprintf (stderr, "Muling D=D*T ");
mpz_out_str(stderr, 10, D);
fprintf (stderr, "*");
mpz_out_str(stderr, 10, T);
fprintf (stderr, "\n");
*/
mpz_mul(D, D, T);
}
else
{
/*
fprintf (stderr, "Muling n=n*T ");
mpz_out_str(stderr, 10, n);
fprintf (stderr, "*");
mpz_out_str(stderr, 10, T);
fprintf (stderr, "\n");
*/
mpz_mul(n, n, T);
}
}
mpz_divexact(n, n, D);
mpz_clear(T);
mpz_clear(org_n);
mpz_clear(D);
return 1;
}
/* A simple partial-recursive decent parser */
int eval_2 (int bInFuncParams)
{
mpz_t n_stack[4];
mpz_t n;
int i;
int num_base;
char op_stack[4];
char op;
char negate;
for (i=0;i<4;i++)
{
op_stack[i]=0;
mpz_init(n_stack[i]);
}
mpz_init(n);
op = 0;
negate = 0;
for (;;)
{
if ('-'==(*expr_str))
{
expr_str++;
negate=1;
}
else
negate=0;
if ('('==(*expr_str) || '['==(*expr_str) || '{'==(*expr_str)) /* Number is subexpression */
{
expr_str++;
eval_2 (bInFuncParams);
mpz_set(n, t);
}
else /* Number is decimal value */
{
for (i=0;isdigit(expr_str[i]);i++)
;
if (!i) /* No digits found */
{
/* check for a valid "function" */
if (!strncasecmp (&expr_str[i], "phi(", 4))
{
/* Process the phi(B,N) function */
expr_str+=4;
/* eval the first parameter. NOTE we pass a 1 since we ARE in parameter mode,
and this causes the ',' character to act as the end of expression */
if (eval_2 (1) != 2)
{
fprintf (stderr, "Error, Function Phi() requires 2 parameters in GMP-ECM syntax\n");
mpz_clear(n);
for (i=0;i<4;i++)
mpz_clear(n_stack[i]);
return 0;
}
/* Save off the parameter */
mpz_set(n_stack[3], t);
/* Now eval the second parameter NOTE we pass a 0 since we are NOT expecting a ','
character to end the expression, but are expecting a ) character to end the function */
if (eval_2 (0))
{
mpz_set(n, t);
if (eval_Phi (n_stack[3], n, 1) == 0)
{
mpz_clear(n);
for (i=0;i<4;i++)
mpz_clear(n_stack[i]);
return 0;
}
}
goto MONADIC_SUFFIX_LOOP;
}
else
{
fprintf (stderr, "\nError - invalid number [%c]\n", expr_str[i]);
mpz_clear(n);
for (i=0;i<4;i++)
mpz_clear(n_stack[i]);
return 0;
}
}
/* Now check for a hex number. If so, handle it as such */
num_base=10; /* assume base 10 */
if (i == 1 && !strncasecmp(expr_str, "0x", 2))
{
num_base = 16; /* Kick up to hex */
expr_str += 2; /* skip the 0x string of the number */
for (i=0;isxdigit(expr_str[i]);i++)
;
}
op=expr_str[i];
expr_str[i]=0;
mpz_set_str(n,expr_str,num_base);
expr_str+=i;
*expr_str=op;
}
if (negate)
mpz_neg(n,n);
/* This label is needed for "normal" primorials and factorials, since they are evaluated Monadic suffix
expressions. Most of this parser assumes Dyadic operators with the only exceptino being the
Monadic prefix operator of "unary minus" which is handled by simply ignoring it (but remembering),
and then fixing the expression up when completed. */
/* This is ALSO where functions should be sent. A function should "act" like a stand alone number.
We should NOT start processing, and expecting a number, but we should expect an operator first */
MONADIC_SUFFIX_LOOP:;
op=*expr_str++;
if (0==op || ')'==op || ']'==op || '}'==op || (','==op&&bInFuncParams))
{
eval_power (n_stack[2],n,op_stack[2]);
eval_product (n_stack[1],n,op_stack[1]);
eval_sum (n_stack[0],n,op_stack[0]);
mpz_set(t, n);
mpz_clear(n);
for (i=0;i<4;i++)
mpz_clear(n_stack[i]);
/* Hurray! a valid expression (or sub-expression) was parsed! */
return ','==op?2:1;
}
else
{
if ('^' == op)
{
eval_power (n_stack[2],n,op_stack[2]);
mpz_set(n_stack[2], n);
op_stack[2]='^';
}
else if ('!' == op)
{
if (!isdigit(*expr_str))
{
/* If the next char is not a digit, then this is a simple factorial, and not a "multi" factorial */
mpz_set(n_stack[2], n);
op_stack[2]='!';
goto MONADIC_SUFFIX_LOOP;
}
eval_power (n_stack[2],n,op_stack[2]);
mpz_set(n_stack[2], n);
op_stack[2]='@';
}
else if ('#' == op)
{
if (!isdigit(*expr_str))
{
/* If the next char is not a digit, then this is a simple primorial, and not a "reduced" primorial */
mpz_set(n_stack[2], n);
op_stack[2]='#';
goto MONADIC_SUFFIX_LOOP;
}
eval_power (n_stack[2],n,op_stack[2]);
mpz_set(n_stack[2], n);
op_stack[2]='$';
}
else
{
if ('.'==op || '*'==op || '/'==op || '%'==op)
{
eval_power (n_stack[2],n,op_stack[2]);
op_stack[2]=0;
eval_product (n_stack[1],n,op_stack[1]);
mpz_set(n_stack[1], n);
op_stack[1]=op;
}
else
{
if ('+'==op || '-'==op)
{
eval_power (n_stack[2],n,op_stack[2]);
op_stack[2]=0;
eval_product (n_stack[1],n,op_stack[1]);
op_stack[1]=0;
eval_sum (n_stack[0],n,op_stack[0]);
mpz_set(n_stack[0], n);
op_stack[0]=op;
}
else /* Error - invalid operator */
{
fprintf (stderr, "\nError - unknown operator: '%c'\n", op);
mpz_clear(n);
for (i=0;i<4;i++)
mpz_clear(n_stack[i]);
return 0;
}
}
}
}
}
}
void init_expr(void)
{
mpz_init_set_ui(mpOne, 1);
}
void free_expr(void)
{
mpz_clear(mpOne);
}
|