![]() |
#include <kernel/mod2.h>
#include <omalloc/omalloc.h>
#include <factory/factory.h>
#include <coeffs/bigintmat.h>
#include <coeffs/coeffs.h>
#include <coeffs/numbers.h>
#include <misc/options.h>
#include <misc/intvec.h>
#include <misc/sirandom.h>
#include <misc/prime.h>
#include <polys/prCopy.h>
#include <polys/matpol.h>
#include <polys/monomials/maps.h>
#include <polys/coeffrings.h>
#include <polys/sparsmat.h>
#include <polys/weight.h>
#include <polys/ext_fields/transext.h>
#include <polys/clapsing.h>
#include <kernel/combinatorics/stairc.h>
#include <kernel/combinatorics/hilb.h>
#include <kernel/linear_algebra/interpolation.h>
#include <kernel/linear_algebra/linearAlgebra.h>
#include <kernel/linear_algebra/MinorInterface.h>
#include <kernel/spectrum/GMPrat.h>
#include <kernel/groebner_walk/walkProc.h>
#include <kernel/oswrapper/timer.h>
#include <kernel/fglm/fglm.h>
#include <kernel/GBEngine/kstdfac.h>
#include <kernel/GBEngine/syz.h>
#include <kernel/GBEngine/kstd1.h>
#include <kernel/GBEngine/units.h>
#include <kernel/GBEngine/tgb.h>
#include <kernel/preimage.h>
#include <kernel/polys.h>
#include <kernel/ideals.h>
#include <Singular/mod_lib.h>
#include <Singular/fevoices.h>
#include <Singular/tok.h>
#include <Singular/ipid.h>
#include <Singular/sdb.h>
#include <Singular/subexpr.h>
#include <Singular/lists.h>
#include <Singular/maps_ip.h>
#include <Singular/ipconv.h>
#include <Singular/ipprint.h>
#include <Singular/attrib.h>
#include <Singular/links/silink.h>
#include <Singular/misc_ip.h>
#include <Singular/linearAlgebra_ip.h>
#include <Singular/number2.h>
#include <Singular/fglm.h>
#include <Singular/blackbox.h>
#include <Singular/newstruct.h>
#include <Singular/ipshell.h>
#include <reporter/si_signals.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdio.h>
#include <time.h>
#include <unistd.h>
#include <vector>
#include <kernel/GBEngine/ratgring.h>
#include <kernel/GBEngine/nc.h>
#include <polys/nc/nc.h>
#include <polys/nc/sca.h>
#include "table.h"
#include "iparith.inc"
Go to the source code of this file.
Data Structures | |
struct | sValCmdTab |
struct | cmdnames |
struct | sValCmd1 |
struct | sValCmd2 |
struct | sValCmd3 |
struct | sValCmdM |
struct | SArithBase |
Macros | |
#define | PLURAL_MASK 3 |
#define | RING_MASK 4 |
#define | ZERODIVISOR_MASK 8 |
#define | ALLOW_PLURAL 1 |
#define | NO_PLURAL 0 |
#define | COMM_PLURAL 2 |
#define | ALLOW_RING 4 |
#define | NO_RING 0 |
#define | NO_ZERODIVISOR 8 |
#define | ALLOW_ZERODIVISOR 0 |
#define | WARN_RING 16 |
#define | ii_div_by_0 "div. by 0" |
#define | SIMPL_LMDIV 32 |
#define | SIMPL_LMEQ 16 |
#define | SIMPL_MULT 8 |
#define | SIMPL_EQU 4 |
#define | SIMPL_NULL 2 |
#define | SIMPL_NORM 1 |
#define | jjWRONG2 (proc2)jjWRONG |
#define | jjWRONG3 (proc3)jjWRONG |
#define | D(A) (A) |
#define | NULL_VAL NULL |
#define | IPARITH |
Typedefs | |
typedef sValCmdTab | jjValCmdTab[] |
typedef char *(* | Proc1) (char *) |
typedef BOOLEAN(* | proc2) (leftv, leftv, leftv) |
typedef BOOLEAN(* | proc3) (leftv, leftv, leftv, leftv) |
Variables | |
static SArithBase | sArithBase |
Base entry for arithmetic. More... | |
int | cmdtok |
BOOLEAN | expected_parms |
int | iiOp |
int | singclap_factorize_retry |
static int | WerrorS_dummy_cnt =0 |
struct sValCmdTab |
Definition at line 142 of file iparith.cc.
Data Fields | ||
---|---|---|
short | cmd | |
short | start |
struct _scmdnames |
Definition at line 47 of file gentable.cc.
Data Fields | ||
---|---|---|
short | alias | |
const char * | name | |
char * | name | |
short | toktype | |
short | tokval |
struct sValCmd1 |
Definition at line 66 of file gentable.cc.
Data Fields | ||
---|---|---|
short | arg | |
short | cmd | |
int | p | |
proc1 | p | |
short | res | |
short | valid_for |
struct sValCmd2 |
Definition at line 57 of file gentable.cc.
Data Fields | ||
---|---|---|
short | arg1 | |
short | arg2 | |
short | cmd | |
int | p | |
proc2 | p | |
short | res | |
short | valid_for |
struct sValCmd3 |
Definition at line 74 of file gentable.cc.
Data Fields | ||
---|---|---|
short | arg1 | |
short | arg2 | |
short | arg3 | |
short | cmd | |
int | p | |
proc3 | p | |
short | res | |
short | valid_for |
struct sValCmdM |
Definition at line 84 of file gentable.cc.
Data Fields | ||
---|---|---|
short | cmd | |
short | number_of_args | |
int | p | |
proc1 | p | |
short | res | |
short | valid_for |
struct SArithBase |
Definition at line 201 of file iparith.cc.
Data Fields | ||
---|---|---|
int | nCmdAllocated | number of commands-slots allocated |
int | nCmdUsed | number of commands used |
int | nLastIdentifier | valid indentifieres are slot 1..nLastIdentifier |
struct sValCmd1 * | psValCmd1 | |
struct sValCmd2 * | psValCmd2 | |
struct sValCmd3 * | psValCmd3 | |
struct sValCmdM * | psValCmdM | |
cmdnames * | sCmds | array of existing commands |
#define ALLOW_PLURAL 1 |
Definition at line 118 of file iparith.cc.
#define ALLOW_RING 4 |
Definition at line 121 of file iparith.cc.
#define ALLOW_ZERODIVISOR 0 |
Definition at line 124 of file iparith.cc.
#define COMM_PLURAL 2 |
Definition at line 120 of file iparith.cc.
Definition at line 7943 of file iparith.cc.
#define ii_div_by_0 "div. by 0" |
Definition at line 237 of file iparith.cc.
#define IPARITH |
Definition at line 7945 of file iparith.cc.
Definition at line 3662 of file iparith.cc.
Definition at line 3663 of file iparith.cc.
#define NO_PLURAL 0 |
Definition at line 119 of file iparith.cc.
#define NO_RING 0 |
Definition at line 122 of file iparith.cc.
#define NO_ZERODIVISOR 8 |
Definition at line 123 of file iparith.cc.
#define NULL_VAL NULL |
Definition at line 7944 of file iparith.cc.
#define PLURAL_MASK 3 |
Definition at line 106 of file iparith.cc.
#define RING_MASK 4 |
Definition at line 112 of file iparith.cc.
#define SIMPL_EQU 4 |
Definition at line 3350 of file iparith.cc.
#define SIMPL_LMDIV 32 |
Definition at line 3347 of file iparith.cc.
#define SIMPL_LMEQ 16 |
Definition at line 3348 of file iparith.cc.
#define SIMPL_MULT 8 |
Definition at line 3349 of file iparith.cc.
#define SIMPL_NORM 1 |
Definition at line 3352 of file iparith.cc.
#define SIMPL_NULL 2 |
Definition at line 3351 of file iparith.cc.
#define WARN_RING 16 |
Definition at line 127 of file iparith.cc.
#define ZERODIVISOR_MASK 8 |
Definition at line 113 of file iparith.cc.
typedef sValCmdTab jjValCmdTab[] |
Definition at line 148 of file iparith.cc.
typedef char*(* Proc1) (char *) |
Definition at line 160 of file iparith.cc.
compares to entry of cmdsname-list
[in] | a | |
[in] | b |
Definition at line 8895 of file iparith.cc.
Definition at line 9121 of file iparith.cc.
|
static |
Definition at line 6005 of file iparith.cc.
int iiArithAddCmd | ( | const char * | szName, |
short | nAlias, | ||
short | nTokval, | ||
short | nToktype, | ||
short | nPos = -1 |
||
) |
Definition at line 9062 of file iparith.cc.
int iiArithFindCmd | ( | const char * | szName | ) |
Definition at line 8967 of file iparith.cc.
char* iiArithGetCmd | ( | int | nPos | ) |
Definition at line 9027 of file iparith.cc.
int iiArithRemoveCmd | ( | char * | szName | ) |
int iiArithRemoveCmd | ( | const char * | szName | ) |
Definition at line 9035 of file iparith.cc.
Definition at line 8313 of file iparith.cc.
BOOLEAN iiExprArith1Tab | ( | leftv | res, |
leftv | a, | ||
int | op, | ||
struct sValCmd1 * | dA1, | ||
int | at, | ||
struct sConvertTypes * | dConvertTypes | ||
) |
apply an operation 'op' to an argument a return TRUE on failure
[out] | res | pre-allocated result |
[in] | a | argument |
[in] | op | operation |
[in] | dA1 | table of possible proc assumes dArith1[0].cmd==op |
[in] | at | a->Typ() |
[in] | dConvertTypes | table of type conversions |
Definition at line 8185 of file iparith.cc.
Definition at line 8126 of file iparith.cc.
BOOLEAN iiExprArith2Tab | ( | leftv | res, |
leftv | a, | ||
int | op, | ||
struct sValCmd2 * | dA2, | ||
int | at, | ||
struct sConvertTypes * | dConvertTypes | ||
) |
apply an operation 'op' to arguments a and a->next return TRUE on failure
[out] | res | pre-allocated result |
[in] | a | 2 arguments |
[in] | op | operation |
[in] | dA2 | table of possible proc assumes dA2[0].cmd==op |
[in] | at | a->Typ() |
[in] | dConvertTypes | table of type conversions |
Definition at line 8113 of file iparith.cc.
|
static |
Definition at line 7954 of file iparith.cc.
Definition at line 8525 of file iparith.cc.
BOOLEAN iiExprArith3Tab | ( | leftv | res, |
leftv | a, | ||
int | op, | ||
struct sValCmd3 * | dA3, | ||
int | at, | ||
struct sConvertTypes * | dConvertTypes | ||
) |
apply an operation 'op' to arguments a, a->next and a->next->next return TRUE on failure
[out] | res | pre-allocated result |
[in] | a | 3 arguments |
[in] | op | operation |
[in] | dA3 | table of possible proc assumes dA3[0].cmd==op |
[in] | at | a->Typ() |
[in] | dConvertTypes | table of type conversions |
Definition at line 8577 of file iparith.cc.
|
static |
Definition at line 8371 of file iparith.cc.
Definition at line 8613 of file iparith.cc.
int iiInitArithmetic | ( | ) |
initialisation of arithmetic structured data
0 | on success |
Definition at line 8932 of file iparith.cc.
|
static |
Definition at line 242 of file iparith.cc.
|
static |
Definition at line 134 of file iparith.cc.
|
static |
Definition at line 8821 of file iparith.cc.
int iiTokType | ( | int | op | ) |
Definition at line 254 of file iparith.cc.
int IsCmd | ( | const char * | n, |
int & | tok | ||
) |
Definition at line 8722 of file iparith.cc.
Definition at line 1757 of file iparith.cc.
Definition at line 1747 of file iparith.cc.
Definition at line 1366 of file iparith.cc.
Definition at line 8598 of file iparith.cc.
Definition at line 3752 of file iparith.cc.
Definition at line 5733 of file iparith.cc.
Definition at line 3790 of file iparith.cc.
Definition at line 3775 of file iparith.cc.
Definition at line 3796 of file iparith.cc.
Definition at line 5518 of file iparith.cc.
Definition at line 5491 of file iparith.cc.
Definition at line 5546 of file iparith.cc.
Definition at line 5575 of file iparith.cc.
Definition at line 5625 of file iparith.cc.
Definition at line 5675 of file iparith.cc.
Definition at line 5475 of file iparith.cc.
Definition at line 2926 of file iparith.cc.
Definition at line 6674 of file iparith.cc.
Definition at line 6681 of file iparith.cc.
Definition at line 6698 of file iparith.cc.
Definition at line 3811 of file iparith.cc.
Definition at line 6702 of file iparith.cc.
Definition at line 6710 of file iparith.cc.
Definition at line 3815 of file iparith.cc.
Definition at line 1660 of file iparith.cc.
Definition at line 1770 of file iparith.cc.
Definition at line 1918 of file iparith.cc.
Definition at line 6722 of file iparith.cc.
Definition at line 1936 of file iparith.cc.
Definition at line 5758 of file iparith.cc.
Definition at line 5772 of file iparith.cc.
Definition at line 5778 of file iparith.cc.
Definition at line 1925 of file iparith.cc.
Definition at line 714 of file iparith.cc.
Definition at line 344 of file iparith.cc.
Definition at line 3820 of file iparith.cc.
Definition at line 3825 of file iparith.cc.
Definition at line 3830 of file iparith.cc.
Definition at line 391 of file iparith.cc.
Definition at line 363 of file iparith.cc.
Definition at line 419 of file iparith.cc.
Definition at line 446 of file iparith.cc.
Definition at line 501 of file iparith.cc.
Definition at line 3835 of file iparith.cc.
Definition at line 1950 of file iparith.cc.
Definition at line 3843 of file iparith.cc.
Definition at line 3865 of file iparith.cc.
Definition at line 3853 of file iparith.cc.
Definition at line 3859 of file iparith.cc.
Definition at line 3848 of file iparith.cc.
Definition at line 5444 of file iparith.cc.
Definition at line 3870 of file iparith.cc.
Definition at line 3940 of file iparith.cc.
Definition at line 3883 of file iparith.cc.
Definition at line 1966 of file iparith.cc.
Definition at line 3891 of file iparith.cc.
Definition at line 1955 of file iparith.cc.
Definition at line 3902 of file iparith.cc.
Return the denominator of the input number NOTE: the input number is normalized as a side effect.
Definition at line 3953 of file iparith.cc.
Definition at line 3969 of file iparith.cc.
Definition at line 3984 of file iparith.cc.
Definition at line 3998 of file iparith.cc.
Definition at line 4012 of file iparith.cc.
Definition at line 4412 of file iparith.cc.
Definition at line 1991 of file iparith.cc.
Definition at line 2002 of file iparith.cc.
Definition at line 1980 of file iparith.cc.
Definition at line 4028 of file iparith.cc.
Definition at line 2007 of file iparith.cc.
Definition at line 5449 of file iparith.cc.
Definition at line 1190 of file iparith.cc.
Definition at line 1291 of file iparith.cc.
Definition at line 1203 of file iparith.cc.
Definition at line 1216 of file iparith.cc.
Definition at line 2052 of file iparith.cc.
Definition at line 6737 of file iparith.cc.
Definition at line 1167 of file iparith.cc.
Definition at line 357 of file iparith.cc.
Definition at line 3673 of file iparith.cc.
Definition at line 4064 of file iparith.cc.
Definition at line 4078 of file iparith.cc.
Definition at line 2093 of file iparith.cc.
Definition at line 5805 of file iparith.cc.
Definition at line 2099 of file iparith.cc.
Definition at line 5107 of file iparith.cc.
Definition at line 1321 of file iparith.cc.
Definition at line 1327 of file iparith.cc.
Definition at line 1333 of file iparith.cc.
Definition at line 1339 of file iparith.cc.
Definition at line 1345 of file iparith.cc.
Definition at line 1353 of file iparith.cc.
Definition at line 2118 of file iparith.cc.
Definition at line 4090 of file iparith.cc.
Definition at line 2113 of file iparith.cc.
Definition at line 2125 of file iparith.cc.
Definition at line 2139 of file iparith.cc.
Definition at line 2168 of file iparith.cc.
Definition at line 4139 of file iparith.cc.
Definition at line 2185 of file iparith.cc.
Definition at line 4099 of file iparith.cc.
Definition at line 2232 of file iparith.cc.
Definition at line 7645 of file iparith.cc.
Definition at line 2254 of file iparith.cc.
Definition at line 2265 of file iparith.cc.
Definition at line 2273 of file iparith.cc.
Definition at line 6930 of file iparith.cc.
Definition at line 2378 of file iparith.cc.
Definition at line 5812 of file iparith.cc.
Definition at line 2395 of file iparith.cc.
Definition at line 5843 of file iparith.cc.
Definition at line 2415 of file iparith.cc.
Definition at line 2401 of file iparith.cc.
Definition at line 2422 of file iparith.cc.
Definition at line 2439 of file iparith.cc.
Definition at line 1106 of file iparith.cc.
: TRUE iff (n != 0 and (LC(n) > 0 or deg(n) > 0)) in K(t_1, ..., t_n): TRUE iff (LC(numerator(n) is a constant and > 0) or (LC(numerator(n) is not a constant) in Z/2^kZ: TRUE iff 0 < n <= 2^(k-1) in Z/mZ: TRUE iff the internal mpz is greater than zero in Z: TRUE iff n > 0
Definition at line 1113 of file iparith.cc.
Definition at line 1118 of file iparith.cc.
Definition at line 4155 of file iparith.cc.
Definition at line 1124 of file iparith.cc.
: TRUE iff (n != 0 and (LC(n) > 0 or deg(n) > 0)) in K(t_1, ..., t_n): TRUE iff (LC(numerator(n) is a constant and > 0) or (LC(numerator(n) is not a constant) in Z/2^kZ: TRUE iff 0 < n <= 2^(k-1) in Z/mZ: TRUE iff the internal mpz is greater than zero in Z: TRUE iff n > 0
Definition at line 1131 of file iparith.cc.
Definition at line 1136 of file iparith.cc.
Definition at line 4169 of file iparith.cc.
Definition at line 4176 of file iparith.cc.
Definition: polys.h:105
Definition at line 4223 of file iparith.cc.
Definition at line 2445 of file iparith.cc.
Definition at line 5852 of file iparith.cc.
Definition at line 4259 of file iparith.cc.
Definition at line 4271 of file iparith.cc.
Definition at line 2546 of file iparith.cc.
Definition at line 2524 of file iparith.cc.
Definition at line 5921 of file iparith.cc.
Definition at line 2507 of file iparith.cc.
Definition at line 5939 of file iparith.cc.
Definition at line 4310 of file iparith.cc.
Definition at line 4328 of file iparith.cc.
Definition at line 6837 of file iparith.cc.
Definition at line 4338 of file iparith.cc.
Definition at line 5361 of file iparith.cc.
Definition at line 5366 of file iparith.cc.
Definition at line 5389 of file iparith.cc.
Definition at line 4304 of file iparith.cc.
Definition at line 5395 of file iparith.cc.
Definition at line 5454 of file iparith.cc.
Definition at line 5371 of file iparith.cc.
Definition at line 4355 of file iparith.cc.
Definition at line 4362 of file iparith.cc.
Definition at line 4367 of file iparith.cc.
Definition at line 2566 of file iparith.cc.
Definition at line 1376 of file iparith.cc.
Definition at line 1398 of file iparith.cc.
Definition at line 1434 of file iparith.cc.
Definition at line 1451 of file iparith.cc.
Definition at line 1480 of file iparith.cc.
Definition at line 1510 of file iparith.cc.
Definition at line 2579 of file iparith.cc.
Definition at line 4373 of file iparith.cc.
Definition at line 2573 of file iparith.cc.
Definition at line 7058 of file iparith.cc.
Definition at line 5957 of file iparith.cc.
Definition at line 7294 of file iparith.cc.
Definition at line 4395 of file iparith.cc.
Definition at line 4384 of file iparith.cc.
Definition at line 4389 of file iparith.cc.
Definition at line 4431 of file iparith.cc.
Definition at line 4400 of file iparith.cc.
Definition at line 2597 of file iparith.cc.
Definition at line 2591 of file iparith.cc.
Definition at line 7327 of file iparith.cc.
Definition at line 2607 of file iparith.cc.
Definition at line 5988 of file iparith.cc.
Definition at line 5994 of file iparith.cc.
Definition at line 2602 of file iparith.cc.
Definition at line 5971 of file iparith.cc.
Definition at line 4453 of file iparith.cc.
Definition at line 2612 of file iparith.cc.
Definition at line 2625 of file iparith.cc.
Definition at line 1546 of file iparith.cc.
Definition at line 1559 of file iparith.cc.
Definition at line 7373 of file iparith.cc.
Definition at line 1587 of file iparith.cc.
Definition at line 2629 of file iparith.cc.
Definition at line 2633 of file iparith.cc.
Definition at line 4459 of file iparith.cc.
Definition at line 1141 of file iparith.cc.
Definition at line 1145 of file iparith.cc.
Definition at line 1150 of file iparith.cc.
Definition at line 4467 of file iparith.cc.
Definition at line 4480 of file iparith.cc.
Definition at line 4498 of file iparith.cc.
Definition at line 2641 of file iparith.cc.
Definition at line 6516 of file iparith.cc.
Definition at line 2651 of file iparith.cc.
Definition at line 6528 of file iparith.cc.
Definition at line 7394 of file iparith.cc.
Definition at line 4517 of file iparith.cc.
load lib/module given in v
Definition at line 5274 of file iparith.cc.
Definition at line 4513 of file iparith.cc.
Definition at line 2661 of file iparith.cc.
Definition at line 2665 of file iparith.cc.
Definition at line 5338 of file iparith.cc.
Definition at line 1154 of file iparith.cc.
Definition at line 1158 of file iparith.cc.
Definition at line 1163 of file iparith.cc.
Definition at line 4534 of file iparith.cc.
Definition at line 7132 of file iparith.cc.
Definition at line 7213 of file iparith.cc.
|
static |
Definition at line 7936 of file iparith.cc.
Definition at line 1642 of file iparith.cc.
Definition at line 6454 of file iparith.cc.
Definition at line 6490 of file iparith.cc.
Definition at line 6477 of file iparith.cc.
Definition at line 4564 of file iparith.cc.
Definition at line 6013 of file iparith.cc.
Definition at line 4614 of file iparith.cc.
Definition at line 879 of file iparith.cc.
Definition at line 904 of file iparith.cc.
Definition at line 863 of file iparith.cc.
Definition at line 894 of file iparith.cc.
Definition at line 914 of file iparith.cc.
Definition at line 884 of file iparith.cc.
Definition at line 889 of file iparith.cc.
Definition at line 2725 of file iparith.cc.
Definition at line 2736 of file iparith.cc.
Definition at line 2676 of file iparith.cc.
Definition at line 2748 of file iparith.cc.
Definition at line 2752 of file iparith.cc.
Definition at line 2793 of file iparith.cc.
Definition at line 5410 of file iparith.cc.
Definition at line 5415 of file iparith.cc.
Definition at line 4593 of file iparith.cc.
Definition at line 4608 of file iparith.cc.
Definition at line 4628 of file iparith.cc.
Definition at line 4640 of file iparith.cc.
Definition at line 4647 of file iparith.cc.
Definition at line 7445 of file iparith.cc.
Definition at line 4652 of file iparith.cc.
Definition at line 2817 of file iparith.cc.
Definition at line 6212 of file iparith.cc.
Definition at line 5459 of file iparith.cc.
Definition at line 5466 of file iparith.cc.
Definition at line 4657 of file iparith.cc.
Definition at line 3678 of file iparith.cc.
Return the numerator of the input number NOTE: the input number is normalized as a side effect.
Definition at line 3962 of file iparith.cc.
Definition at line 4662 of file iparith.cc.
Definition at line 300 of file iparith.cc.
Definition at line 287 of file iparith.cc.
Definition at line 268 of file iparith.cc.
Definition at line 283 of file iparith.cc.
Definition at line 340 of file iparith.cc.
Definition at line 321 of file iparith.cc.
Definition at line 325 of file iparith.cc.
Definition at line 304 of file iparith.cc.
Definition at line 528 of file iparith.cc.
Definition at line 4667 of file iparith.cc.
Definition at line 2945 of file iparith.cc.
Definition at line 5092 of file iparith.cc.
Definition at line 7450 of file iparith.cc.
Definition at line 1371 of file iparith.cc.
Definition at line 4673 of file iparith.cc.
Definition at line 4719 of file iparith.cc.
Definition at line 4739 of file iparith.cc.
Definition at line 4787 of file iparith.cc.
Definition at line 4679 of file iparith.cc.
Definition at line 4695 of file iparith.cc.
Definition at line 4701 of file iparith.cc.
Definition at line 2825 of file iparith.cc.
Definition at line 4525 of file iparith.cc.
Definition at line 3314 of file iparith.cc.
Definition at line 5384 of file iparith.cc.
Definition at line 5356 of file iparith.cc.
Definition at line 2905 of file iparith.cc.
Definition at line 2884 of file iparith.cc.
Definition at line 2863 of file iparith.cc.
Definition at line 2842 of file iparith.cc.
Definition at line 786 of file iparith.cc.
Definition at line 811 of file iparith.cc.
Definition at line 774 of file iparith.cc.
Definition at line 858 of file iparith.cc.
Definition at line 801 of file iparith.cc.
Definition at line 821 of file iparith.cc.
Definition at line 833 of file iparith.cc.
Definition at line 791 of file iparith.cc.
Definition at line 796 of file iparith.cc.
Definition at line 844 of file iparith.cc.
Definition at line 848 of file iparith.cc.
Definition at line 652 of file iparith.cc.
Definition at line 3692 of file iparith.cc.
Definition at line 5405 of file iparith.cc.
Definition at line 590 of file iparith.cc.
Definition at line 544 of file iparith.cc.
Definition at line 646 of file iparith.cc.
Definition at line 606 of file iparith.cc.
Definition at line 624 of file iparith.cc.
Definition at line 6222 of file iparith.cc.
Definition at line 4751 of file iparith.cc.
Definition at line 4757 of file iparith.cc.
Definition at line 1606 of file iparith.cc.
Definition at line 3748 of file iparith.cc.
Definition at line 5726 of file iparith.cc.
Definition at line 4763 of file iparith.cc.
Definition at line 7835 of file iparith.cc.
Definition at line 3018 of file iparith.cc.
Definition at line 3026 of file iparith.cc.
Definition at line 6322 of file iparith.cc.
Definition at line 6296 of file iparith.cc.
Definition at line 4819 of file iparith.cc.
Definition at line 3034 of file iparith.cc.
Definition at line 5376 of file iparith.cc.
Definition at line 4826 of file iparith.cc.
Definition at line 3043 of file iparith.cc.
Definition at line 6553 of file iparith.cc.
Definition at line 6541 of file iparith.cc.
Definition at line 6572 of file iparith.cc.
Definition at line 6565 of file iparith.cc.
Definition at line 7460 of file iparith.cc.
Definition at line 7522 of file iparith.cc.
Definition at line 3067 of file iparith.cc.
Definition at line 3059 of file iparith.cc.
Definition at line 4830 of file iparith.cc.
Definition at line 4835 of file iparith.cc.
Definition at line 3194 of file iparith.cc.
Definition at line 6580 of file iparith.cc.
Definition at line 7571 of file iparith.cc.
Definition at line 4803 of file iparith.cc.
Definition at line 6618 of file iparith.cc.
Definition at line 4840 of file iparith.cc.
Definition at line 5420 of file iparith.cc.
Definition at line 4847 of file iparith.cc.
Definition at line 4853 of file iparith.cc.
Definition at line 4858 of file iparith.cc.
Definition at line 4863 of file iparith.cc.
Definition at line 5436 of file iparith.cc.
Definition at line 3340 of file iparith.cc.
Definition at line 5428 of file iparith.cc.
Definition at line 4912 of file iparith.cc.
Definition at line 4938 of file iparith.cc.
Definition at line 4964 of file iparith.cc.
Definition at line 3353 of file iparith.cc.
Definition at line 3444 of file iparith.cc.
Definition at line 4868 of file iparith.cc.
Definition at line 5016 of file iparith.cc.
Definition at line 5021 of file iparith.cc.
Definition at line 3386 of file iparith.cc.
Definition at line 3433 of file iparith.cc.
Definition at line 3438 of file iparith.cc.
Definition at line 6623 of file iparith.cc.
Definition at line 7777 of file iparith.cc.
Definition at line 4990 of file iparith.cc.
Definition at line 3482 of file iparith.cc.
Definition at line 3456 of file iparith.cc.
Definition at line 6632 of file iparith.cc.
Definition at line 7852 of file iparith.cc.
Definition at line 7592 of file iparith.cc.
Definition at line 5351 of file iparith.cc.
Definition at line 6392 of file iparith.cc.
Definition at line 6436 of file iparith.cc.
Definition at line 6440 of file iparith.cc.
Definition at line 6444 of file iparith.cc.
Definition at line 7808 of file iparith.cc.
Definition at line 6366 of file iparith.cc.
Definition at line 6338 of file iparith.cc.
Definition at line 5400 of file iparith.cc.
Definition at line 5038 of file iparith.cc.
Definition at line 7626 of file iparith.cc.
Definition at line 939 of file iparith.cc.
Definition at line 1023 of file iparith.cc.
Definition at line 927 of file iparith.cc.
Definition at line 1003 of file iparith.cc.
Definition at line 1011 of file iparith.cc.
Definition at line 1091 of file iparith.cc.
Definition at line 1035 of file iparith.cc.
Definition at line 1045 of file iparith.cc.
Definition at line 1081 of file iparith.cc.
Definition at line 1087 of file iparith.cc.
Definition at line 1069 of file iparith.cc.
Definition at line 1077 of file iparith.cc.
Definition at line 1049 of file iparith.cc.
Definition at line 1059 of file iparith.cc.
Definition at line 946 of file iparith.cc.
Definition at line 956 of file iparith.cc.
Definition at line 5076 of file iparith.cc.
Definition at line 5081 of file iparith.cc.
Definition at line 5086 of file iparith.cc.
Definition at line 5130 of file iparith.cc.
Definition at line 5140 of file iparith.cc.
Definition at line 3704 of file iparith.cc.
Definition at line 3741 of file iparith.cc.
Definition at line 3711 of file iparith.cc.
Definition at line 3734 of file iparith.cc.
Definition at line 3728 of file iparith.cc.
Definition at line 3716 of file iparith.cc.
Definition at line 3723 of file iparith.cc.
Definition at line 5183 of file iparith.cc.
Definition at line 5188 of file iparith.cc.
Definition at line 5205 of file iparith.cc.
Definition at line 3572 of file iparith.cc.
Definition at line 5222 of file iparith.cc.
Definition at line 5228 of file iparith.cc.
Definition at line 3585 of file iparith.cc.
Definition at line 5243 of file iparith.cc.
Definition at line 3609 of file iparith.cc.
Definition at line 3657 of file iparith.cc.
Definition at line 3664 of file iparith.cc.
Definition at line 249 of file iparith.cc.
Definition at line 2130 of file ipshell.cc.
Definition at line 1744 of file ipshell.cc.
const char* Tok2Cmdname | ( | int | tok | ) |
Definition at line 8844 of file iparith.cc.
|
static |
Definition at line 5334 of file iparith.cc.
int cmdtok |
Definition at line 175 of file grammar.cc.
BOOLEAN expected_parms |
Definition at line 174 of file grammar.cc.
int iiOp |
Definition at line 239 of file iparith.cc.
|
static |
Base entry for arithmetic.
Definition at line 218 of file iparith.cc.
int singclap_factorize_retry |
Definition at line 3385 of file iparith.cc.
|
static |
Definition at line 5333 of file iparith.cc.