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 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
|
/*------------------------------------------------------------------------
* Copyright INRIA
* isequalbitwise and isequal built-ins definition
* Serge Steer, INRIA 2007
* Comment:
* This file contains the routines used by the isequalbitwise and isequal builtin functions
--------------------------------------------------------------------------*/
#ifdef _MSC_VER
#include <windows.h>
#endif
#include <string.h>
#include "../stack-c.h"
#include "IsEqualVar.h"
#ifdef LONG_LONG
#undef LONG_LONG
#endif
#ifdef _MSC_VER
#if _MSC_VER <=1200
typedef __int64 LONG_LONG;
#else
typedef long long LONG_LONG;
#endif
#else
typedef long long LONG_LONG;
#endif
static int IsEqualDoubleMat(double *d1, double *d2);
static int IsEqualPolyMat(double *d1, double *d2);
static int IsEqualBoolMat(double *d1, double *d2);
static int IsEqualDoubleSparseMat(double *d1, double *d2);
static int IsEqualBoolSparseMat(double *d1, double *d2);
static int IsEqualMatlabSparseMat(double *d1, double *d2);
static int IsEqualIntegerMat(double *d1, double *d2);
static int IsEqualStringMat(double *d1, double *d2);
static int IsEqualLib(double *d1, double *d2);
static int IsEqualList(double *d1, double *d2);
static int IsEqualLUPtr(double *d1, double *d2);
static int IsEqualOverloaded(double *d1, int n1, double *d2, int n2);
static int IsEqualDoubleArray(int n, double *d1, double *d2);
static int IsEqualDoubleArrayBinary(int n, double *d1, double *d2);
static int IsEqualDoubleArrayIEEE(int n, double *d1, double *d2);
static int IsEqualIntegerArray(int n, int *d1, int *d2);
static int IsEqualShortIntegerArray(int typ, int n, int *d1, int *d2);
static int IsEqualFunction(double *d1, double *d2);
static int IsEqualVar(double *d1, int n1, double *d2, int n2);
/* comparison mode for double precision numbers */
void SetDoubleCompMode(int mode);
int GetDoubleCompMode();
int DoubleCompMode=1; /*IEEE mode */
/* Structure for walking inside Scilab lists (used by IsEqualList)*/
int AllocRecIfRequired(int krec);
void FreeRec();
typedef struct RecursionRecord
{
double* d1 ;/* pointers on the first list header */
double* d2 ;/* pointers on the second list header */
int k; /* index of current list element */
} RecursionRecord, *RecursionRecordPtr;
RecursionRecordPtr Rrec;
int MaxRec; /* allocated size for the array Rrec, 0 means not allocated */
/* macros for debugging */
/*#define DEBUG_BASE(fmt, ...)sciprint(fmt, __VA_ARGS__) */;
/*#define DEBUG_LIST(fmt, ...) sciprint(fmt, __VA_ARGS__) */ ;
/*#define DEBUG_OVERLOADING(fmt, ...) sciprint(fmt, __VA_ARGS__) */ ;
/* Scilab parser recursion data and functions*/
static int *Ids = C2F(recu).ids-nsiz-1;
static int *Rstk = C2F(recu).rstk-1;
static int *Pstk = C2F(recu).pstk-1;
#define Pt (C2F(recu).pt)
int Ptover(int n);
int C2F(overload)(int *lw,char *fname,unsigned long l);
/**intisequalvar
* Gateway for isequalbitwise and isequal builtins
* @param char * fname: the Scilab code of the function name
* @param int * job: if *job==0 the floating point numbers are compared bitwize ,
* if *job==1 the comparison is made numerically,
* so NaN elements are not equal
* elements of with differents data types are raised to the upper types before comparison (to be done)
* @return 0 in any cases
* @author Serge Steer
* @see isequal
*/
int C2F(intisequalvar)(char * fname, int *job, long int fl)
{
int topk, top1, srhs, k,kmin, l, res;
int one = 1;
int l1,lk, il1,ilk;
int n1,nk; //memory size used by the variable, only used for overloaded comparison
/*DEBUG_OVERLOADING("entering intisequal Top=%d, Rhs=%d, Rstk[pt]=%d\n",Top,Rhs,Rstk[Pt]);*/
SetDoubleCompMode(*job); /* floating point numbers are compared bitwize */
if (Rstk[Pt]==914||Rstk[Pt]==915) { /* coming back after evaluation of overloading function */
/*DEBUG_OVERLOADING("intisequal called back by the parser Top=%d, Rhs=%d, Pt=%d\n",Top,Rhs,Pt);*/
/* Restore context */
kmin = Ids[1 + Pt * nsiz];
srhs = Ids[2 + Pt * nsiz];
topk = Ids[3 + Pt * nsiz];
top1 = Top-1-srhs+1;/* Top-1 because Top has been increased to store the result of overloading function */
}
else {
CheckRhs(2,2000000);
CheckLhs(1,1);
srhs = Rhs;
top1 = Top-srhs+1;
topk = top1 + 1;
kmin = 2;
MaxRec = 0;
Rrec = NULL;
}
l1 = *Lstk(top1);il1 = iadr(l1);
n1 = *Lstk(top1+1)-l1;
if (*istk(il1) < 0) {
l1 = *istk(il1+1);
n1 = *istk(il1+3);
}
for (k = kmin; k <= srhs; k++) {
lk = *Lstk(topk);ilk=iadr(lk);
nk = *Lstk(topk+1)-lk;
if (*istk(ilk) < 0) {
lk= *istk(ilk+1);
nk = *istk(ilk+3);
}
res = IsEqualVar(stk(l1),n1,stk(lk),nk);
if (res==-1) { /* overloading function evaluation required */
/* save context */
Ids[1 + Pt * nsiz] = k;
Ids[2 + Pt * nsiz] = srhs;
Ids[3 + Pt * nsiz] = topk;
return 0;
}
else if (res == -2) {/* Memory allocation failed */
Error(112);
FreeRec();
return 0;
}
/*DEBUG_OVERLOADING("k=%d, res=%d\n", k,res);*/
if (res == 0) goto END;
topk++;
}
END:
Top = top1;
C2F(crebmat)(fname, &top1, &one, &one, &l, strlen(fname));
*istk(l)=res;
FreeRec();
return 0;
}
/**IsEqualOverloaded
* Used to call the overloading function when testing unknown data type for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical, -1 for recursion purpose
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualOverloaded(double *d1, int n1, double *d2, int n2)
{
int *id1 = (int *) d1;
int *id2 = (int *) d2;
int il,lw;
int l1,l2;
if (Rstk[Pt]==914||Rstk[Pt]==915) { /* coming back after evaluation of overloading function */
/* Get the computed value */
il = iadr(*Lstk(Top));
Top--;
Pt--;
return *istk(il+3);
}
/* Prepare stack for calling overloading function */
/* put references to d1 and d2 variable at the top of the stack */
l1=*Lstk(1) + (int)(d1-stk(*Lstk(1)));/*compute index in stk from absolute adress value */
l2=*Lstk(1) + (int)(d2-stk(*Lstk(1)));/*compute index in stk from absolute adress value */
Top = Top+1;
il = iadr(*Lstk(Top));
*istk(il) = -id1[0];
*istk(il+1)= l1; /* index othe first element of the variable in stk */
*istk(il+2) = 0; /* variable number unknown */
*istk(il+3) = n1; /* variable memory size */
*Lstk(Top+1) = *Lstk(Top)+2;
Top = Top+1;
il = iadr(*Lstk(Top));
*istk(il)=-id2[0];
*istk(il+1)= l2; /* index othe first element of the variable in stk */
*istk(il+2)=0; /*variable number unknown */
*istk(il+3)=n2; /*variable memory size */
*Lstk(Top+1)=*Lstk(Top)+2;
Ptover(1);
Rhs = 2;
lw = Top - 1;
if( GetDoubleCompMode()==0) {
C2F(overload)(&lw,"isequalbitwise",14L);
Rstk[Pt]=914;
}
else {
C2F(overload)(&lw,"isequal",7L);
Rstk[Pt]=915;
}
/*DEBUG_OVERLOADING("IsEqualVar Overloaded calls the parser Top=%d, Rhs=%d, Pt=%d\n",Top,Rhs,Pt);*/
return -1;
}
/**IsEqualVar
* Driver used to test a couple of Scilab variable for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param int n1: memory size used by the first variable, only used for overloading
* @param double *d2: pointer on the beginning of the first variable structure
* @param int n2: memory size used by the second variable, only used for overloading
* @return 0 is the variables differ and 1 if they are identical, -1 for recursion purpose, -2 for allocatopn problem
* @author Serge Steer
* @see intisequal
*/
int IsEqualVar(double *d1, int n1, double *d2, int n2)
{
int *id1 = (int *) d1;
int *id2 = (int *) d2;
int res;
/*DEBUG_BASE("IsEqualVar %d %d \n",id1[0],id2[0]);*/
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
switch (id1[0]) {
case 0: /* null */
return 1;
case 1: /* matrix of double precision floating point numbers */
if ( !IsEqualDoubleMat(d1, d2) ) goto DIFFER;
break;
case 2:/* matrix of polynomials */
if ( !IsEqualPolyMat(d1, d2) ) goto DIFFER;
break;
case 4:/* matrix of booleans */
if ( !IsEqualBoolMat(d1, d2) ) goto DIFFER;
break;
case 5:/* sparse matrix of double */
if ( !IsEqualDoubleSparseMat(d1, d2) ) goto DIFFER;
break;
case 6:/* sparse matrix of booleans */
if ( !IsEqualBoolSparseMat(d1, d2) ) goto DIFFER;
break;
case 7:/* matlab sparse matrix */
if ( !IsEqualMatlabSparseMat(d1, d2) ) goto DIFFER;
break;
case 8 : /* matrix of short integers */
if ( !IsEqualIntegerMat(d1, d2) ) goto DIFFER;
break;
case 9 : /* matrix of graphic handles */
if ( !IsEqualDoubleMat(d1, d2) ) goto DIFFER;
break;
case 10:/* matrix of strings */
if ( !IsEqualStringMat(d1, d2) ) goto DIFFER;
break;
case 11:/* Uncompiled function */
case 13:/* compiled function */
if ( !IsEqualFunction(d1, d2) ) goto DIFFER;
break;
case 14:/* library */
if ( !IsEqualLib(d1, d2) ) goto DIFFER;
break;
case 15: /* list */
case 16: /* tlist */
case 17: /* mlist */
res = IsEqualList(d1, d2);
if ( !res ) goto DIFFER;
if (res < 0) return res;
break;
case 128: /* lufact pointer */
if ( !IsEqualLUPtr(d1, d2) ) goto DIFFER;
break;
default :
res = IsEqualOverloaded(d1, n1, d2, n2);
if ( !res ) goto DIFFER;
if (res == -1) return -1;
}
return 1;
DIFFER:
return 0;
}
/**IsEqualList
* Used to test a couple of Scilab variable of type list, tlist or mlist for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical, -1 for recursion purpose, -2 for allocatopn problem
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualList(double *d1, double *d2)
{
/* This code does not use simple recursion, because of possible need of
* call to Scilab for evaluation of overloading function
* The redusion is emulated using the Rrec data structure to memorize the path
* to the current element.
*/
int l,k,res,nelt;
int *id1, *id2;
int *ip1, *ip2;
double *p1, *p2;
int krec;
if (Rstk[Pt]==914||Rstk[Pt]==915) { /* coming back after evaluation of overloading function */
/* Restore context */
krec = Pstk[Pt];
MaxRec = Ids[4 + Pt * nsiz] ;
memcpy(&Rrec,&(Ids[5 + Pt * nsiz]),sizeof(RecursionRecordPtr)); /* recover Rrec pointer */
k = Rrec[krec].k;
d1 = Rrec[krec].d1; /* pointer on the sub-level list 1*/
d2 = Rrec[krec].d2; /* pointer on the sub-level list 2*/
id1 = (int *) d1;
id2 = (int *) d2;
nelt = id1[1];
goto SETLEVEL;
}
else { /* regular entry */
krec = 0;
}
STARTLEVEL:
/* the objects pointed to by d1 and d2 are lists */
/* set current level context */
if (AllocRecIfRequired(krec)==-2) return -2;
Rrec[krec].d1 = d1;
Rrec[krec].d2 = d2;
Rrec[krec].k = 0;
/* check the type */
id1 = (int *) d1;
id2 = (int *) d2;
if ((id1[0] != id2[0])) goto DIFFER;
/* check the number of elements */
if (id1[1] != id2[1]) goto DIFFER;
nelt = id1[1];
/* check the array of "pointers" on list elements*/
if (!IsEqualIntegerArray(nelt+1, id1+2, id2+2)) goto DIFFER;
/*DEBUG_LIST("STARTLEVEL nelt=%d\n",nelt);*/
k = 0;
SETLEVEL:
/* check the list elements */
ip1=id1+2;
ip2=id2+2;
l = (nelt + 4)/2; /* the beginning of first field in the double array */
p1=d1+l;
p2=d2+l;
ELEMENT:
if (k >= nelt) { /* no more element to compare */
if (krec > 0 ) { /* end of a sub-level */
/* restore upper level context*/
krec--;
/*DEBUG_LIST("Sublist ELEMENT index=%d finished, previous restored from krec=%d\n",k+1,krec);*/
d1 = Rrec[krec].d1;
d2 = Rrec[krec].d2;
k = Rrec[krec].k+1;
/* rebuild pointers */
id1 = (int *) d1;
id2 = (int *) d2;
nelt = id1[1];
/*DEBUG_LIST("back to lower level nelt=%d index=%d krec=%d\n",nelt,k+1,krec);*/
goto SETLEVEL;
}
else /* end of main level */
return 1;
}
/* compare next element */
if (ip1[k]==ip1[k+1]) {/* undefined element nothing to check */
k++;
goto ELEMENT;
}
d1 = p1+ip1[k]-1;
d2 = p2+ip2[k]-1;
id1=(int *)d1;
id2=(int *)d2;
if (id1[0]!=15 && id1[0]!=16&& id1[0]!=17) { /* elements which are not lists */
res = IsEqualVar(d1, ip1[k+1]-ip1[k], d2, ip2[k+1]-ip2[k]);
/*DEBUG_LIST("Regular ELEMENT index=%d res=%d\n",k+1,res);*/
if (!res) goto DIFFER;
if (res == -1) { /*overloading function evaluation required */
/* preserve context */
Pstk[Pt] = krec;
Ids[4 + Pt * nsiz] = MaxRec;
/* Store Rrec pointer into Ids[5 + Pt * nsiz] and Ids[6 + Pt * nsiz] */
memcpy(&(Ids[5 + Pt * nsiz]),&Rrec,sizeof(RecursionRecordPtr));
return -1;
}
k++;
goto ELEMENT;
}
else { /* sub list found*/
/*DEBUG_LIST("Sublist ELEMENT index=%d started, previous stored in krec=%d\n",k+1,krec);*/
Rrec[krec].k = k;
krec++;
goto STARTLEVEL;
}
return 1;
DIFFER:
return 0;
}
/**IsEqualLib
* Used to test a couple of Scilab variable of type library (14) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualLib(double *d1, double *d2)
{
int n,l;
int nclas=29;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the path length */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the path" */
n = id1[1];
if (!IsEqualIntegerArray(n, id1+2, id2+2)) goto DIFFER;
l = n+2;
/* Check the number of names */
if (id1[l] != id2[l]) goto DIFFER;
n = id1[l];l++;
/* check the table */
if (!IsEqualIntegerArray(nclas, id1+l, id2+l)) goto DIFFER;
l += nclas;
/* Check the sequence of names */
if (!IsEqualIntegerArray(n*nsiz, id1+l, id2+l)) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualDoubleMat
* Used to test a couple of Scilab variable of type 1 (matrix of floating point numbers)
* or 9 (graphic handles) for equality*
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualDoubleMat(double *d1, double *d2)
{
int n;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the real/complex flag */
if (id1[3] != id2[3]) goto DIFFER;
n = id1[1]*id1[2]*(id1[3]+1); /* number of double precision floating point numbers */
/* check the array of numbers */
if (!IsEqualDoubleArray(n, d1+2, d2+2)) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualIntegerMat
* Used to test a couple of Scilab variable of type 8 (integer) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualIntegerMat(double *d1, double *d2)
{
int n;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the subtype */
if (id1[3] != id2[3]) goto DIFFER;
n = id1[1]*id1[2]; /* number of double precision floating point numbers */
/* check the array of numbers */
if (!IsEqualShortIntegerArray(id1[3], n, id1+4, id2+4)) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualBoolMat
* Used to test a couple of Scilab variable of type 4 (boolean) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualBoolMat(double *d1, double *d2)
{
int n;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the data */
n = id1[1]*id1[2]; /* number of double precision floating point numbers */
/* check the array of numbers */
if (!IsEqualIntegerArray(n, id1+3, id2+3)) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualStringMat
* Used to test a couple of Scilab variable of type 10 (string) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualStringMat(double *d1, double *d2)
{
int n;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the array of "pointers" */
n = id1[1]*id1[2];
if ( !IsEqualIntegerArray(n+1, id1+4, id2+4) ) goto DIFFER;
/* Check the array of character codes (integer) */
if (!IsEqualIntegerArray(id1[4+n]-1, id1+5+n, id2+5+n)) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualPolyMat
* Used to test a couple of Scilab variable of type 2 (matrix of polynomials) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualPolyMat(double *d1, double *d2)
{
int l,n;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the real/complex flag */
if (id1[3] != id2[3]) goto DIFFER;
/* Check the formal variable name */
if ( !IsEqualIntegerArray(4, id1+4, id2+4) ) goto DIFFER;
/* Check the array of "pointers" */
n = id1[1]*id1[2];
if ( !IsEqualIntegerArray(n, id1+8, id2+8) ) goto DIFFER;
/* Check the array of double precision numbers */
l = (n + 10)/2;/* the beginning of first field in th double array */
/* check the array of numbers */
if ( !IsEqualDoubleArray(id1[8+n]-1, d1+l, d2+l) ) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualDoubleSparseMat
* Used to test a couple of Scilab variable of type 5 (sparse matrix) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualDoubleSparseMat(double *d1, double *d2) /* a faire */
{
int l,nel;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the real/complex flag */
if (id1[3] != id2[3]) goto DIFFER;
/* Check the number of non zero elements */
if (id1[4] != id2[4]) goto DIFFER;
nel = id1[4];
l = 5;
/* Check the array of number of non zero element per row */
if ( !IsEqualIntegerArray(id1[1], id1+l, id2+l) ) goto DIFFER;
l += id1[1];
/* Check the column index of non zero elements */
if ( !IsEqualIntegerArray(nel, id1+l, id2+l) ) goto DIFFER;
l += nel;
/* Check the non zero elements */
l = (l+1)/2;
if ( !IsEqualDoubleArray(nel*(id1[3]+1), d1+l, d2+l) ) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualMatlabSparseMat
* Used to test a couple of Scilab variable of type 7 (Matlab sparse matrix) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualMatlabSparseMat(double *d1, double *d2) /* a faire */
{
int l,nel;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the real/complex flag */
if (id1[3] != id2[3]) goto DIFFER;
/* Check the number of non zero elements */
if (id1[4] != id2[4]) goto DIFFER;
nel = id1[4];
l = 5;
/* Check the array of number of non zero element per column */
if ( !IsEqualIntegerArray(id1[2], id1+l, id2+l) ) goto DIFFER;
l += id1[2];
/* Check the column index of non zero elements */
if ( !IsEqualIntegerArray(nel, id1+l, id2+l) ) goto DIFFER;
l += nel;
/* Check the non zero elements */
l = (l+1)/2;
if ( !IsEqualDoubleArray(nel*(id1[3]+1), d1+l, d2+l) ) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualBoolSparseMat
* Used to test a couple of Scilab variable of type 6 (Boolean sparse matrix) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualBoolSparseMat(double *d1, double *d2) /* a faire */
{
int l,nel;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the number of non zero elements */
if (id1[4] != id2[4]) goto DIFFER;
nel = id1[4];
l = 5;
/* Check the array of number of non zero element per row */
if ( !IsEqualIntegerArray(id1[1], id1+l, id2+l) ) goto DIFFER;
l += id1[1];
/* Check the column index of non zero elements */
if ( !IsEqualIntegerArray(nel, id1+l, id2+l) ) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualFunction
* Used to test a couple of Scilab variable of type 11 or 13 (function) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualFunction(double *d1, double *d2)
{
int l,n;
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
l=1;
/* Check the number of output args */
if (id1[l] != id2[l]) goto DIFFER;
/* Check the output args names*/
n = id1[l]; l++;
if ( !IsEqualIntegerArray(n*nsiz, id1+l, id2+l) ) goto DIFFER;
l += n*nsiz;
/* Check the number of input args */
if (id1[l] != id2[l]) goto DIFFER;
/* Check the input args names*/
n = id1[l]; l++;
if ( !IsEqualIntegerArray(n*nsiz, id1+l, id2+l) ) goto DIFFER;
l += n*nsiz;
/* Check the number of integer in instructions */
if (id1[l] != id2[l]) goto DIFFER;
n = id1[l]; l++;
if ( !IsEqualIntegerArray(n, id1+l, id2+l) ) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualLUPtr
* Used to test a couple of Scilab variable of type 128 (pointer on LU factorization) for equality
* @param double *d1: pointer on the beginning of the first variable structure
* @param double *d2: pointer on the beginning of the first variable structure
* @return 0 is the variables differ and 1 if they are identical
* @author Serge Steer
* @see IsEqualVar
*/
int IsEqualLUPtr(double *d1, double *d2)
{
int *id1 = (int *) d1;
int *id2 = (int *) d2;
/* Check the type */
if ((id1[0] != id2[0])) goto DIFFER;
/* Check the number of rows */
if (id1[1] != id2[1]) goto DIFFER;
/* Check the number of columns */
if (id1[2] != id2[2]) goto DIFFER;
/* Check the real/complex flag */
if (id1[3] != id2[3]) goto DIFFER;
/* Check the pointer value */
if (d1[2] != d2[2]) goto DIFFER;
return 1;
DIFFER:
return 0;
}
/**IsEqualDoubleArrayIEEE
* compare if two double precision arrays of size n, are identical.
* NaN entries are supposed to be different from all values included NaN
* NaN != NaN
* @param int n: array size
* @param double *d1: pointer on the beginning of the first array
* @param double *d2: pointer on the beginning of the second array
* @return 0 is the arrays differ and 1 if they are identical
* @author Serge Steer
*/
int IsEqualDoubleArrayIEEE(int n, double *d1, double *d2)
{
int i;
/*DEBUG_BASE("IEEE comparison of %d doubles\n",n);*/
if (n == 0) return 1;
for (i = 0; i<n; i++){
if (d1[i] != d2[i]) goto DIFFER;
}
return 1;
DIFFER:
return 0;
}
/** IsEqualDoubleArrayBinary
* compare if two arrays of long long integers of size n, are identical.
* @param int n: array size
* @param long long *d1: pointer on the beginning of the first array
* @param long long *d2: pointer on the beginning of the second array
* @return 0 is the arrays differ and 1 if they are identical
* @author Serge Steer
*/
int IsEqualDoubleArrayBinary(int n, double *d1, double *d2)
{
int i;
LONG_LONG *l1= (LONG_LONG *)d1;
LONG_LONG *l2= (LONG_LONG *)d2;
/*DEBUG_BASE("binary comparison of %d doubles \n",n);*/
if (n == 0) return 1;
for (i = 0; i<n; i++){
if (l1[i] != l2[i]) goto DIFFER;
}
return 1;
DIFFER:
return 0;
}
/**IsEqualDoubleArray
* compare if two double precision arrays of size n, are identical.
* If the arrays conatins NaN the meaning depends on the value of the global flag IEEE_comp
* - if DoubleCompMode==1, double numbers are compared using "==", so Nan != NaN.
* - if DoubleCompMode==0, double numbers are compared bitwize.
* @param int n: array size
* @param double *d1: pointer on the beginning of the first array
* @param double *d2: pointer on the beginning of the second array
* @return 0 is the arrays differ and 1 if they are identical
* @author Serge Steer
*/
int IsEqualDoubleArray(int n, double *d1, double *d2)
{
if ( GetDoubleCompMode()) {
return IsEqualDoubleArrayIEEE(n, d1, d2);
}
else {
return IsEqualDoubleArrayBinary(n, d1, d2);
}
}
/**IsEqualIntegerArray
* compare if two int arrays of size n, are identical
* @param int n: array size
* @param int *d1: pointer on the beginning of the first array
* @param int *d2: pointer on the beginning of the second array
* @return 0 is the arrays differ and 1 if they are identical
* @author Serge Steer
*/
int IsEqualIntegerArray(int n, int *d1, int *d2)
{
int i;
/*DEBUG_BASE("comparison of %d ints\n",n);*/
if (n == 0) return 1;
for (i = 0; i<n; i++){
if (d1[i] != d2[i]) goto DIFFER;
}
return 1;
DIFFER:
return 0;
}
typedef signed char integer1;
typedef short integer2;
/* Copyright INRIA */
#define ISEQUAL(Type) {\
Type *A;\
Type *B;\
A=(Type *)d1;\
B=(Type *)d2;\
for (i = 0; i <n; ++i) {\
if (A[i] != B[i]) goto DIFFER;\
}\
}
/**IsEqualShortIntegerArray
* compare if two short int (1,2 or 4 bytes) arrays of size n, are identical
* @param int type: integer type 1, 2, 4 or 11, 12, 14 for unsigned int
* @param int n: array size
* @param int *d1: pointer on the beginning of the first array
* @param int *d2: pointer on the beginning of the second array
* @return 0 is the arrays differ and 1 if they are identical
* @author Serge Steer
*/
int IsEqualShortIntegerArray(int typ, int n, int *d1, int *d2)
{
int i;
/*DEBUG_BASE("comparison of %d int %d bytes\n",n,typ);*/
if (n == 0) return 1;
switch (typ) {
case 0:
ISEQUAL(double);
break;
case 1:
ISEQUAL(integer1);
break;
case 2:
ISEQUAL(integer2);
break;
case 4:
ISEQUAL(integer);
break;
case 11:
ISEQUAL(unsigned char);
break;
case 12:
ISEQUAL(unsigned short);
break;
case 14:
ISEQUAL(unsigned int);
break;
}
return 1;
DIFFER:
return 0;
}
/**FreeRec
* Utility function to free the list recursion table
* @author Serge Steer
*/
void FreeRec()
{
if ( MaxRec > 0 ) {
FREE(Rrec);
Rrec = NULL;
MaxRec = 0;
}
}
/** AllocRecIfRequired
* Utility function to allocate or reallocate the list recursion table
* @param int krec: minimum size requested
* @author Serge Steer
*/
int AllocRecIfRequired(int krec)
{
/*Allocation is made by block of size 10 */
if (MaxRec <= krec) {
if ((Rrec = REALLOC(Rrec,(MaxRec+10)*sizeof(RecursionRecord))) ==NULL) return -2;
MaxRec = MaxRec+10;
}
return 0;
}
/**SetDoubleCompMode
* Utility function used to set the way double numbers are compared
* @param int mode. 1 means that IEEE comparison is used, 0 means binary comparison
* @author Serge Steer
*/
void SetDoubleCompMode(int mode)
{
DoubleCompMode=mode;
}
/**GetDoubleCompMode
* Utility function used to get the way double numbers are compared
* @return 1 means that IEEE comparison is used, 0 means binary comparison
* @author Serge Steer
*/
int GetDoubleCompMode()
{
return DoubleCompMode;
}
|