![]() |
#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 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 132 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 189 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 8052 of file iparith.cc.
#define ii_div_by_0 "div. by 0" |
Definition at line 225 of file iparith.cc.
#define IPARITH |
Definition at line 8054 of file iparith.cc.
Definition at line 3658 of file iparith.cc.
Definition at line 3659 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 8053 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 3346 of file iparith.cc.
#define SIMPL_LMDIV 32 |
Definition at line 3343 of file iparith.cc.
#define SIMPL_LMEQ 16 |
Definition at line 3344 of file iparith.cc.
#define SIMPL_MULT 8 |
Definition at line 3345 of file iparith.cc.
#define SIMPL_NORM 1 |
Definition at line 3348 of file iparith.cc.
#define SIMPL_NULL 2 |
Definition at line 3347 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 138 of file iparith.cc.
compares to entry of cmdsname-list
[in] | a | |
[in] | b |
Definition at line 9004 of file iparith.cc.
Definition at line 9230 of file iparith.cc.
|
static |
Definition at line 6049 of file iparith.cc.
int iiArithAddCmd | ( | const char * | szName, |
short | nAlias, | ||
short | nTokval, | ||
short | nToktype, | ||
short | nPos = -1 |
||
) |
Definition at line 9171 of file iparith.cc.
int iiArithFindCmd | ( | const char * | szName | ) |
Definition at line 9076 of file iparith.cc.
char* iiArithGetCmd | ( | int | nPos | ) |
Definition at line 9136 of file iparith.cc.
int iiArithRemoveCmd | ( | char * | szName | ) |
int iiArithRemoveCmd | ( | const char * | szName | ) |
Definition at line 9144 of file iparith.cc.
Definition at line 8422 of file iparith.cc.
BOOLEAN iiExprArith1Tab | ( | leftv | res, |
leftv | a, | ||
int | op, | ||
const struct sValCmd1 * | dA1, | ||
int | at, | ||
const 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 8294 of file iparith.cc.
Definition at line 8235 of file iparith.cc.
BOOLEAN iiExprArith2Tab | ( | leftv | res, |
leftv | a, | ||
int | op, | ||
const struct sValCmd2 * | dA2, | ||
int | at, | ||
const 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 8222 of file iparith.cc.
|
static |
Definition at line 8063 of file iparith.cc.
Definition at line 8634 of file iparith.cc.
BOOLEAN iiExprArith3Tab | ( | leftv | res, |
leftv | a, | ||
int | op, | ||
const struct sValCmd3 * | dA3, | ||
int | at, | ||
const 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 8686 of file iparith.cc.
|
static |
Definition at line 8480 of file iparith.cc.
Definition at line 8722 of file iparith.cc.
int iiInitArithmetic | ( | ) |
initialisation of arithmetic structured data
0 | on success |
Definition at line 9041 of file iparith.cc.
|
static |
Definition at line 230 of file iparith.cc.
|
static |
Definition at line 8929 of file iparith.cc.
int iiTokType | ( | int | op | ) |
Definition at line 242 of file iparith.cc.
int IsCmd | ( | const char * | n, |
int & | tok | ||
) |
Definition at line 8830 of file iparith.cc.
Definition at line 1753 of file iparith.cc.
Definition at line 1743 of file iparith.cc.
Definition at line 1362 of file iparith.cc.
Definition at line 8707 of file iparith.cc.
Definition at line 3748 of file iparith.cc.
Definition at line 5779 of file iparith.cc.
Definition at line 3771 of file iparith.cc.
Definition at line 3793 of file iparith.cc.
Definition at line 3778 of file iparith.cc.
Definition at line 3799 of file iparith.cc.
Definition at line 5564 of file iparith.cc.
Definition at line 5537 of file iparith.cc.
Definition at line 5592 of file iparith.cc.
Definition at line 5621 of file iparith.cc.
Definition at line 5671 of file iparith.cc.
Definition at line 5721 of file iparith.cc.
Definition at line 5521 of file iparith.cc.
Definition at line 2922 of file iparith.cc.
Definition at line 6723 of file iparith.cc.
Definition at line 6730 of file iparith.cc.
Definition at line 6747 of file iparith.cc.
Definition at line 3814 of file iparith.cc.
Definition at line 6751 of file iparith.cc.
Definition at line 6759 of file iparith.cc.
Definition at line 3818 of file iparith.cc.
Definition at line 1656 of file iparith.cc.
Definition at line 1766 of file iparith.cc.
Definition at line 1914 of file iparith.cc.
Definition at line 6771 of file iparith.cc.
Definition at line 1932 of file iparith.cc.
Definition at line 5804 of file iparith.cc.
Definition at line 5818 of file iparith.cc.
Definition at line 5824 of file iparith.cc.
Definition at line 1921 of file iparith.cc.
Definition at line 702 of file iparith.cc.
Definition at line 332 of file iparith.cc.
Definition at line 3823 of file iparith.cc.
Definition at line 3828 of file iparith.cc.
Definition at line 3833 of file iparith.cc.
Definition at line 379 of file iparith.cc.
Definition at line 351 of file iparith.cc.
Definition at line 407 of file iparith.cc.
Definition at line 434 of file iparith.cc.
Definition at line 489 of file iparith.cc.
Definition at line 3838 of file iparith.cc.
Definition at line 1946 of file iparith.cc.
Definition at line 3846 of file iparith.cc.
Definition at line 3868 of file iparith.cc.
Definition at line 3856 of file iparith.cc.
Definition at line 3862 of file iparith.cc.
Definition at line 3851 of file iparith.cc.
Definition at line 5490 of file iparith.cc.
Definition at line 3873 of file iparith.cc.
Definition at line 3941 of file iparith.cc.
Definition at line 3886 of file iparith.cc.
Definition at line 1962 of file iparith.cc.
Definition at line 3894 of file iparith.cc.
Definition at line 1951 of file iparith.cc.
Definition at line 3905 of file iparith.cc.
Return the denominator of the input number NOTE: the input number is normalized as a side effect.
Definition at line 3954 of file iparith.cc.
Definition at line 3970 of file iparith.cc.
Definition at line 3985 of file iparith.cc.
Definition at line 4019 of file iparith.cc.
Definition at line 4000 of file iparith.cc.
Definition at line 4033 of file iparith.cc.
Definition at line 4465 of file iparith.cc.
Definition at line 1987 of file iparith.cc.
Definition at line 1998 of file iparith.cc.
Definition at line 1976 of file iparith.cc.
Definition at line 4049 of file iparith.cc.
Definition at line 2003 of file iparith.cc.
Definition at line 5495 of file iparith.cc.
Definition at line 1180 of file iparith.cc.
Definition at line 1281 of file iparith.cc.
Definition at line 1193 of file iparith.cc.
Definition at line 1206 of file iparith.cc.
Definition at line 2052 of file iparith.cc.
Definition at line 6786 of file iparith.cc.
Definition at line 1157 of file iparith.cc.
Definition at line 345 of file iparith.cc.
Definition at line 3669 of file iparith.cc.
Definition at line 4123 of file iparith.cc.
Definition at line 4137 of file iparith.cc.
Definition at line 2093 of file iparith.cc.
Definition at line 5851 of file iparith.cc.
Definition at line 2099 of file iparith.cc.
Definition at line 5175 of file iparith.cc.
Definition at line 1311 of file iparith.cc.
Definition at line 1317 of file iparith.cc.
Definition at line 1323 of file iparith.cc.
Definition at line 1335 of file iparith.cc.
Definition at line 1341 of file iparith.cc.
Definition at line 1329 of file iparith.cc.
Definition at line 1349 of file iparith.cc.
Definition at line 2118 of file iparith.cc.
Definition at line 4149 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 4198 of file iparith.cc.
Definition at line 2185 of file iparith.cc.
Definition at line 4158 of file iparith.cc.
Definition at line 2232 of file iparith.cc.
Definition at line 7731 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 6979 of file iparith.cc.
Definition at line 2378 of file iparith.cc.
Definition at line 5858 of file iparith.cc.
Definition at line 2395 of file iparith.cc.
Definition at line 5889 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 1096 of file iparith.cc.
Definition at line 1103 of file iparith.cc.
Definition at line 1108 of file iparith.cc.
Definition at line 4214 of file iparith.cc.
Definition at line 1114 of file iparith.cc.
Definition at line 1121 of file iparith.cc.
Definition at line 1126 of file iparith.cc.
Definition at line 4228 of file iparith.cc.
Definition at line 4235 of file iparith.cc.
Definition at line 4282 of file iparith.cc.
Definition at line 2445 of file iparith.cc.
Definition at line 5898 of file iparith.cc.
Definition at line 4316 of file iparith.cc.
Definition at line 4326 of file iparith.cc.
Definition at line 2546 of file iparith.cc.
Definition at line 2524 of file iparith.cc.
Definition at line 5965 of file iparith.cc.
Definition at line 2507 of file iparith.cc.
Definition at line 5983 of file iparith.cc.
Definition at line 4365 of file iparith.cc.
Definition at line 4383 of file iparith.cc.
Definition at line 6886 of file iparith.cc.
Definition at line 4393 of file iparith.cc.
Definition at line 5419 of file iparith.cc.
Definition at line 5424 of file iparith.cc.
Definition at line 5444 of file iparith.cc.
Definition at line 4359 of file iparith.cc.
Definition at line 5450 of file iparith.cc.
Definition at line 5500 of file iparith.cc.
Definition at line 5429 of file iparith.cc.
Definition at line 4410 of file iparith.cc.
Definition at line 4417 of file iparith.cc.
Definition at line 4422 of file iparith.cc.
Definition at line 2566 of file iparith.cc.
Definition at line 1372 of file iparith.cc.
Definition at line 1394 of file iparith.cc.
Definition at line 1430 of file iparith.cc.
Definition at line 1447 of file iparith.cc.
Definition at line 1476 of file iparith.cc.
Definition at line 1506 of file iparith.cc.
Definition at line 2579 of file iparith.cc.
Definition at line 4428 of file iparith.cc.
Definition at line 2573 of file iparith.cc.
Definition at line 7107 of file iparith.cc.
Definition at line 6001 of file iparith.cc.
Definition at line 7343 of file iparith.cc.
Definition at line 4448 of file iparith.cc.
Definition at line 4437 of file iparith.cc.
Definition at line 4442 of file iparith.cc.
Definition at line 4484 of file iparith.cc.
Definition at line 4453 of file iparith.cc.
Definition at line 2597 of file iparith.cc.
Definition at line 2591 of file iparith.cc.
Definition at line 7376 of file iparith.cc.
Definition at line 2607 of file iparith.cc.
Definition at line 6032 of file iparith.cc.
Definition at line 6038 of file iparith.cc.
Definition at line 2602 of file iparith.cc.
Definition at line 6015 of file iparith.cc.
Definition at line 4506 of file iparith.cc.
Definition at line 2612 of file iparith.cc.
Definition at line 2625 of file iparith.cc.
Definition at line 1542 of file iparith.cc.
Definition at line 1555 of file iparith.cc.
Definition at line 7459 of file iparith.cc.
Definition at line 1583 of file iparith.cc.
Definition at line 2629 of file iparith.cc.
Definition at line 2633 of file iparith.cc.
Definition at line 4512 of file iparith.cc.
Definition at line 1131 of file iparith.cc.
Definition at line 1135 of file iparith.cc.
Definition at line 1140 of file iparith.cc.
Definition at line 4520 of file iparith.cc.
Definition at line 4533 of file iparith.cc.
Definition at line 4551 of file iparith.cc.
Definition at line 2641 of file iparith.cc.
Definition at line 6565 of file iparith.cc.
Definition at line 2651 of file iparith.cc.
Definition at line 6577 of file iparith.cc.
Definition at line 7480 of file iparith.cc.
Definition at line 4570 of file iparith.cc.
load lib/module given in v
Definition at line 5332 of file iparith.cc.
Definition at line 4566 of file iparith.cc.
Definition at line 2661 of file iparith.cc.
Definition at line 2665 of file iparith.cc.
Definition at line 5396 of file iparith.cc.
Definition at line 1144 of file iparith.cc.
Definition at line 1148 of file iparith.cc.
Definition at line 1153 of file iparith.cc.
Definition at line 4586 of file iparith.cc.
Definition at line 7181 of file iparith.cc.
Definition at line 7262 of file iparith.cc.
|
static |
Definition at line 8045 of file iparith.cc.
Definition at line 1638 of file iparith.cc.
Definition at line 6503 of file iparith.cc.
Definition at line 6539 of file iparith.cc.
Definition at line 6526 of file iparith.cc.
Definition at line 4616 of file iparith.cc.
Definition at line 6057 of file iparith.cc.
Definition at line 4666 of file iparith.cc.
Definition at line 869 of file iparith.cc.
Definition at line 894 of file iparith.cc.
Definition at line 853 of file iparith.cc.
Definition at line 884 of file iparith.cc.
Definition at line 904 of file iparith.cc.
Definition at line 874 of file iparith.cc.
Definition at line 879 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 5465 of file iparith.cc.
Definition at line 5470 of file iparith.cc.
Definition at line 4645 of file iparith.cc.
Definition at line 4660 of file iparith.cc.
Definition at line 4680 of file iparith.cc.
Definition at line 4692 of file iparith.cc.
Definition at line 4699 of file iparith.cc.
Definition at line 7531 of file iparith.cc.
Definition at line 4704 of file iparith.cc.
Definition at line 2817 of file iparith.cc.
Definition at line 6256 of file iparith.cc.
Definition at line 5505 of file iparith.cc.
Definition at line 5512 of file iparith.cc.
Definition at line 4709 of file iparith.cc.
Definition at line 3674 of file iparith.cc.
Return the numerator of the input number NOTE: the input number is normalized as a side effect.
Definition at line 3963 of file iparith.cc.
Definition at line 4714 of file iparith.cc.
Definition at line 288 of file iparith.cc.
Definition at line 275 of file iparith.cc.
Definition at line 256 of file iparith.cc.
Definition at line 271 of file iparith.cc.
Definition at line 328 of file iparith.cc.
Definition at line 309 of file iparith.cc.
Definition at line 313 of file iparith.cc.
Definition at line 292 of file iparith.cc.
Definition at line 516 of file iparith.cc.
Definition at line 4719 of file iparith.cc.
Definition at line 2941 of file iparith.cc.
Definition at line 5160 of file iparith.cc.
Definition at line 7536 of file iparith.cc.
Definition at line 1367 of file iparith.cc.
Definition at line 4725 of file iparith.cc.
Definition at line 4771 of file iparith.cc.
Definition at line 4791 of file iparith.cc.
Definition at line 4839 of file iparith.cc.
Definition at line 4731 of file iparith.cc.
Definition at line 4747 of file iparith.cc.
Definition at line 4753 of file iparith.cc.
Definition at line 2825 of file iparith.cc.
Definition at line 4577 of file iparith.cc.
Definition at line 3310 of file iparith.cc.
Definition at line 5439 of file iparith.cc.
Definition at line 5414 of file iparith.cc.
Definition at line 2902 of file iparith.cc.
Definition at line 2882 of file iparith.cc.
Definition at line 2862 of file iparith.cc.
Definition at line 2842 of file iparith.cc.
Definition at line 776 of file iparith.cc.
Definition at line 801 of file iparith.cc.
Definition at line 764 of file iparith.cc.
Definition at line 848 of file iparith.cc.
Definition at line 791 of file iparith.cc.
Definition at line 811 of file iparith.cc.
Definition at line 823 of file iparith.cc.
Definition at line 781 of file iparith.cc.
Definition at line 786 of file iparith.cc.
Definition at line 834 of file iparith.cc.
Definition at line 838 of file iparith.cc.
Definition at line 640 of file iparith.cc.
Definition at line 3688 of file iparith.cc.
Definition at line 5460 of file iparith.cc.
Definition at line 578 of file iparith.cc.
Definition at line 532 of file iparith.cc.
Definition at line 634 of file iparith.cc.
Definition at line 594 of file iparith.cc.
Definition at line 612 of file iparith.cc.
Definition at line 6266 of file iparith.cc.
Definition at line 4803 of file iparith.cc.
Definition at line 4809 of file iparith.cc.
Definition at line 1602 of file iparith.cc.
Definition at line 3744 of file iparith.cc.
Definition at line 5772 of file iparith.cc.
Definition at line 4815 of file iparith.cc.
Definition at line 7921 of file iparith.cc.
Definition at line 3014 of file iparith.cc.
Definition at line 3022 of file iparith.cc.
Definition at line 6366 of file iparith.cc.
Definition at line 6340 of file iparith.cc.
Definition at line 4871 of file iparith.cc.
Definition at line 3030 of file iparith.cc.
Definition at line 5434 of file iparith.cc.
Definition at line 4878 of file iparith.cc.
Definition at line 3039 of file iparith.cc.
Definition at line 6602 of file iparith.cc.
Definition at line 6590 of file iparith.cc.
Definition at line 6621 of file iparith.cc.
Definition at line 6614 of file iparith.cc.
Definition at line 7546 of file iparith.cc.
Definition at line 7608 of file iparith.cc.
Definition at line 3063 of file iparith.cc.
Definition at line 3055 of file iparith.cc.
Definition at line 4882 of file iparith.cc.
Definition at line 4887 of file iparith.cc.
Definition at line 3190 of file iparith.cc.
Definition at line 6629 of file iparith.cc.
Definition at line 7657 of file iparith.cc.
Definition at line 4855 of file iparith.cc.
Definition at line 6667 of file iparith.cc.
Definition at line 4907 of file iparith.cc.
Definition at line 8022 of file iparith.cc.
Definition at line 4892 of file iparith.cc.
Definition at line 4900 of file iparith.cc.
Definition at line 5475 of file iparith.cc.
Definition at line 4915 of file iparith.cc.
Definition at line 4921 of file iparith.cc.
Definition at line 4926 of file iparith.cc.
Definition at line 4931 of file iparith.cc.
Definition at line 5485 of file iparith.cc.
Definition at line 3336 of file iparith.cc.
Definition at line 5480 of file iparith.cc.
Definition at line 4980 of file iparith.cc.
Definition at line 5006 of file iparith.cc.
Definition at line 5032 of file iparith.cc.
Definition at line 3349 of file iparith.cc.
Definition at line 3440 of file iparith.cc.
Definition at line 4936 of file iparith.cc.
Definition at line 5084 of file iparith.cc.
Definition at line 5089 of file iparith.cc.
Definition at line 3382 of file iparith.cc.
Definition at line 3429 of file iparith.cc.
Definition at line 3434 of file iparith.cc.
Definition at line 6672 of file iparith.cc.
Definition at line 7863 of file iparith.cc.
Definition at line 5058 of file iparith.cc.
Definition at line 3478 of file iparith.cc.
Definition at line 3452 of file iparith.cc.
Definition at line 6681 of file iparith.cc.
Definition at line 7938 of file iparith.cc.
Definition at line 7678 of file iparith.cc.
Definition at line 5409 of file iparith.cc.
Definition at line 6441 of file iparith.cc.
Definition at line 6485 of file iparith.cc.
Definition at line 6489 of file iparith.cc.
Definition at line 6493 of file iparith.cc.
Definition at line 7894 of file iparith.cc.
Definition at line 6415 of file iparith.cc.
Definition at line 6387 of file iparith.cc.
Definition at line 5455 of file iparith.cc.
Definition at line 5106 of file iparith.cc.
Definition at line 7712 of file iparith.cc.
Definition at line 929 of file iparith.cc.
Definition at line 1013 of file iparith.cc.
Definition at line 917 of file iparith.cc.
Definition at line 993 of file iparith.cc.
Definition at line 1001 of file iparith.cc.
Definition at line 1081 of file iparith.cc.
Definition at line 1025 of file iparith.cc.
Definition at line 1035 of file iparith.cc.
Definition at line 1071 of file iparith.cc.
Definition at line 1077 of file iparith.cc.
Definition at line 1059 of file iparith.cc.
Definition at line 1067 of file iparith.cc.
Definition at line 1039 of file iparith.cc.
Definition at line 1049 of file iparith.cc.
Definition at line 936 of file iparith.cc.
Definition at line 946 of file iparith.cc.
Definition at line 5144 of file iparith.cc.
Definition at line 5149 of file iparith.cc.
Definition at line 5154 of file iparith.cc.
Definition at line 5186 of file iparith.cc.
Definition at line 5196 of file iparith.cc.
Definition at line 3700 of file iparith.cc.
Definition at line 3737 of file iparith.cc.
Definition at line 3707 of file iparith.cc.
Definition at line 3730 of file iparith.cc.
Definition at line 3724 of file iparith.cc.
Definition at line 3712 of file iparith.cc.
Definition at line 3719 of file iparith.cc.
Definition at line 5241 of file iparith.cc.
Definition at line 5246 of file iparith.cc.
Definition at line 5263 of file iparith.cc.
Definition at line 3568 of file iparith.cc.
Definition at line 5280 of file iparith.cc.
Definition at line 5286 of file iparith.cc.
Definition at line 3581 of file iparith.cc.
Definition at line 5301 of file iparith.cc.
Definition at line 3605 of file iparith.cc.
Definition at line 3653 of file iparith.cc.
Definition at line 3660 of file iparith.cc.
Definition at line 237 of file iparith.cc.
Definition at line 2708 of file ipshell.cc.
const char* Tok2Cmdname | ( | int | tok | ) |
Definition at line 8952 of file iparith.cc.
|
static |
Definition at line 5392 of file iparith.cc.
int cmdtok |
Definition at line 174 of file grammar.cc.
BOOLEAN expected_parms |
Definition at line 173 of file grammar.cc.
int iiOp |
Definition at line 227 of file iparith.cc.
|
static |
Base entry for arithmetic.
Definition at line 206 of file iparith.cc.
int singclap_factorize_retry |
Definition at line 3381 of file iparith.cc.
|
static |
Definition at line 5391 of file iparith.cc.