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 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
|
logical function checkrhs(fname,imin,imax)
C verifie que le nombre d'argument rhs est >= imin <= imax
C implicit undefined (a-z)
integer imin,imax
character fname*(*)
include '../stack.h'
if ( imin.le.rhs.and.rhs.le.imax) then
checkrhs=.true.
else
checkrhs=.false.
call cvname(ids(1,pt+1),fname,0)
call error(77)
endif
return
end
logical function checklhs(fname,imin,imax)
C verifie que le nombre d'argument lhs est >= imin <= imax
C implicit undefined (a-z)
integer imin,imax
character fname*(*)
include '../stack.h'
if ( imin.le.lhs.and.lhs.le.imax) then
checklhs=.true.
else
checklhs=.false.
call cvname(ids(1,pt+1),fname,0)
call error(78)
endif
return
end
logical function getmat(fname,topk,lw,it,m,n,lr,lc)
C renvoit .true. si l'argument en lw est une matrice
C sinon appelle error et renvoit .false.
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position ds la pile
C Sortie
C [it,m,n] caracteristiques de la matrice
C lr : pointe sur la partie reelle ( si la matrice est a
C a(1,1)=stk(lr)
C si l'on veut acceder a des entiers
C a(1,1)=istk(iadr(lr))
C lc : pointe sur la partie imaginaire si elle existe sinon sur zero
C
C implicit undefined (a-z)
integer topk,lw,it,m,n,lr,lc
character fname*(*)
integer il
include '../stack.h'
integer iadr,sadr
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
C test particulier decouvert ds logic.f
if(istk(il).lt.0) il=iadr(istk(il+1))
if(istk(il).ne.1) then
getmat=.false.
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
call error(201)
else
m=istk(il+1)
n=istk(il+2)
it=istk(il+3)
lr=sadr(il+4)
if (it.eq.1) then
lc=lr+m*n
endif
getmat=.true.
endif
return
end
logical function getvect(fname,topk,lw,it,m,n,lr,lc)
C renvoit .true. si l'argument en lw est un vecteur
C sinon appelle error et renvoit .false.
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position ds la pile
C Sortie
C [it,m,n] caracteristiques de la matrice
C lr : pointe sur la partie reelle ( si la matrice est a
C a(1,1)=stk(lr)
C si l'on veut acceder a des entiers
C a(1,1)=istk(iadr(lr))
C lc : pointe sur la partie imaginaire si besoin est
C
C implicit undefined (a-z)
integer topk,lw
character fname*(*)
integer it,m,n,lr,lc
logical getmat
include '../stack.h'
getvect=getmat(fname,topk,lw,it,m,n,lr,lc)
if (getvect.eqv..false.) return
if(m.ne.1.and.n.ne.1) then
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
call error(214)
getvect=.false.
else
getvect=.true.
endif
return
end
logical function getrmat(fname,topk,lw,m,n,lr)
C comme getmat, mais verifie en plus que la matrice est
C reele
C implicit undefined (a-z)
integer topk,lw,it,m,n,lr,lc
character fname*(*)
logical getmat
include '../stack.h'
getrmat=getmat(fname,topk,lw,it,m,n,lr,lc)
if (getrmat.eqv..false.) return
if ( it.ne.0) then
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
call error(202)
getrmat=.false.
else
getrmat=.true.
endif
return
end
logical function getrvect(fname,topk,lw,m,n,lr)
C renvoit .true. si l'argument en lw est un vecteur
C reel sinon appelle error et renvoit .false.
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position ds la pile
C Sortie
C [it,m,n] caracteristiques de la matrice
C lr : pointe sur la partie reelle ( si la matrice est a
C a(1,1)=stk(lr)
C si l'on veut acceder a des entiers
C a(1,1)=istk(iadr(lr))
C implicit undefined (a-z)
integer topk,lw,lr
character fname*(*)
integer m,n
logical getrmat
include '../stack.h'
getrvect=getrmat(fname,topk,lw,m,n,lr)
if (getrvect.eqv..false.) return
if(m.ne.1.and.n.ne.1) then
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
call error(203)
getrvect=.false.
else
getrvect=.true.
endif
return
end
logical function getscalar(fname,topk,lw,lr)
C comme getrmat mais verifie en plus que la matrice est
C un scalaire
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position ds la pile
C Sortie
C lr : pointe sur le scalaire a=stk(lr)
C
C implicit undefined (a-z)
integer topk,lw,lr
character fname*(*)
integer m,n
logical getrmat
include '../stack.h'
getscalar=getrmat(fname,topk,lw,m,n,lr)
if (getscalar.eqv..false.) return
if(m*n.ne.1) then
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
call error(204)
getscalar=.false.
else
getscalar=.true.
endif
return
end
logical function matsize(fname,topk,lw,m,n)
C comme getmat, mais verifie en plus que la matrice est
C bien de taille m,n
C implicit undefined (a-z)
integer topk,lw,m,n
character fname*(*)
integer it,m1,n1,lr,lc
logical getmat
include '../stack.h'
matsize=getmat(fname,topk,lw,it,m1,n1,lr,lc)
if (matsize.eqv..false.) return
if(m.ne.m1.or.n.ne.n1) then
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
pstk(pt+1)=m
pstk(pt+2)=n
call error(205)
matsize=.false.
return
endif
matsize=.true.
return
end
logical function vectsize(fname,topk,lw,n)
C comme getvect, mais verifie en plus que le vecteur
C bien de taille n
C implicit undefined (a-z)
integer topk,lw,n
character fname*(*)
integer m1,n1,lr
logical getvect
include '../stack.h'
vectsize=getvect(fname,topk,lw,it1,m1,n1,lr,lc)
if (vectsize.eqv..false.) return
if(n.ne.m1*n1) then
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
pstk(pt+1)=n
call error(206)
vectsize=.false.
return
endif
vectsize=.true.
return
end
logical function matbsize(fname,topk,lw,m,n)
C comme getbmat, mais verifie en plus que la matrice est
C bien de taille m,n
C implicit undefined (a-z)
integer topk,lw,m,n
character fname*(*)
integer m1,n1,lr
include '../stack.h'
logical getbmat
matbsize=getbmat(fname,topk,lw,m1,n1,lr)
if (matbsize.eqv..false.) return
if(m.ne.m1.or.n.ne.n1) then
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
pstk(pt+1)=m
pstk(pt+2)=n
call error(205)
matbsize=.false.
return
endif
matbsize=.true.
return
end
logical function getsmat(fname,topk,lw,m,n,i,j,lr,nlr)
C renvoit .true. si l'argument en lw est une matrice
C de chaine de caractere
C sinon renvoit .false. et appelle error
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position dans la pile
C i,j : indice de la chaine que l'on veut (on veut a(i,j))
C Sortie :
C [m,n] caracteristiques de la matrice
C lr : pointe sur le premier caractere de a(i,j)
C le caractere se recupere par abs(istk(lr)) qui est
C un codage Scilab des chaines
C nlr : longueur de la chaine a(i,j)
C
C implicit undefined (a-z)
integer topk,lw,m,n,i,j,lr,nlr
integer il
character fname*(*)
include '../stack.h'
integer iadr
c
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
if(istk(il).ne.10) then
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
call error(207)
getsmat=.false.
return
endif
call getsimat(fname,topk,lw,m,n,i,j,lr,nlr)
getsmat=.true.
return
end
subroutine getsimat(fname,topk,lw,m,n,i,j,lr,nlr)
C renvoit lr et nlr en supposant que lw designe
C une matrice de chaine de caracteres
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position dans la pile
C i,j : indice de la chaine que l'on veut (on veut a(i,j))
C m,n, : taille de la matrice
C Sortie :
C lr : pointe sur le premier caractere de a(i,j)
C le caractere se recupere par abs(istk(lr)) qui est
C un codage Scilab des chaines
C nlr : longueur de le chaine a(i,j)
C
C implicit undefined (a-z)
include '../stack.h'
integer topk,lw,m,n,i,j,lr,nlr
integer il,k
character fname*(*)
integer iadr
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
m=istk(il+1)
n=istk(il+2)
k=(i-1)+(j-1)*m
lr=il+4+m*n+ istk(il+4+k)
nlr=istk(il+4+k+1)-istk(il+4+k)
return
end
logical function cresmat(fname,lw,m,n,nchar)
C verifie que l'on peut stocker une matrice [m,n]
C de chaine de caracteres chaque chaine etant de longueur nchar
C a la position lw en renvoyant .true. ou .false.
C suivant la reponse. Si la reponse est .true. on initialise les
C dimensions de la matrice et change la valeur de lstk(lw+1)
C Entree :
C lw : position (entier)
C m, n dimensions
C nchar : nombre de caracteres
C Sortie :
C lr1 : pointe sur a(1,1)=istk(lr1)
C nlr1 : nombre de caracteres ds a(1,1)
C!
C implicit undefined (a-z)
character fname*(*)
integer lw,m,n,nchar,il,ilp,kij,ilast
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
if ( lw+1.ge.bot) then
call error(18)
cresmat=.false.
return
endif
il=iadr(lstk(lw))
err=sadr(il+4+(nchar+1)*m*n)-lstk(bot)
if(err.gt.0) then
call error(17)
cresmat=.false.
return
else
cresmat=.true.
istk(il)=10
istk(il+1)=m
istk(il+2)=n
istk(il+3)=0
ilp=il+4
istk(ilp)=1
do 10 kij=ilp+1,m*n+ilp
istk(kij)=istk(kij-1)+nchar
10 continue
ilast=ilp+m*n
lstk(lw+1)=sadr(ilast+istk(ilast))
return
endif
end
logical function cresmat1(fname,lw,m,nchar)
C verifie que l'on peut stocker une matrice [m,1]
C de chaine de caracteres chaque chaine etant de longueur nchar(i)
C a la position lw en renvoyant .true. ou .false.
C suivant la reponse. Si la reponse est .true. on initialise les
C dimensions de la matrice et change la valeur de lstk(lw+1)
C Entree :
C lw : position (entier)
C n dimensions
C nchar : nombre de caracteres tableau de dimension(n)
C!
C implicit undefined (a-z)
character fname*(*)
integer lw,m,nchar(m),il,ilp,kij,ilast,nnchar,i
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
if ( lw+1.ge.bot) then
call error(18)
cresmat1=.false.
return
endif
nnchar=0
do 20 i=1,m
nnchar=nchar(i)+nnchar
20 continue
il=iadr(lstk(lw))
err=sadr(il+4+(nnchar+1)*m)-lstk(bot)
if(err.gt.0) then
call error(17)
cresmat1=.false.
return
else
cresmat1=.true.
istk(il)=10
istk(il+1)=m
istk(il+2)=1
istk(il+3)=0
ilp=il+4
istk(ilp)=1
i=1
do 10 kij=ilp+1,ilp+m
istk(kij)=istk(kij-1)+nchar(i)
i=i+1
10 continue
ilast=ilp+m
lstk(lw+1)=sadr(ilast+istk(ilast))
return
endif
end
logical function cresmat2(fname,lw,nchar,lr)
C verifie que l'on peut stocker une matrice [1,1]
C de chaine de caracteres a la position lw en renvoyant .true. ou .false.
C suivant la reponse. Si la reponse est .true.
C nchar est le nombre de caracteres que l'on peut stcoker
C Entree :
C lw : position (entier)
C Sortie :
C nchar : nombre de caracteres stockable
C lr : pointe sur a(1,1)=istk(lr)
C!
C implicit undefined (a-z)
character fname*(*)
integer lw,nchar,il,ilast,lr
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
if ( lw+1.ge.bot) then
call error(18)
cresmat2=.false.
return
endif
il=iadr(lstk(lw))
err=sadr(il+4+(nchar+1))-lstk(bot)
if(err.gt.0) then
call error(17)
cresmat2=.false.
return
else
cresmat2=.true.
istk(il)=10
istk(il+1)=1
istk(il+2)=1
istk(il+3)=0
istk(il+4)=1
istk(il+4+1)=istk(il+4)+nchar
ilast=il+4+1
lstk(lw+1)=sadr(ilast+istk(ilast))
lr=ilast+ istk(ilast-1)
return
endif
end
logical function smatj(fname,lw,j)
C verifie qu'il y a une matrice de chaine de caracteres en lw-1
C et verifie que l'on peut stocker l'extraction de la jieme colonne
C en lw : si oui l'extraction est faite
C Entree :
C lw : position (entier)
C j : colonne a extraire
C!
C implicit undefined (a-z)
character fname*(*)
integer lw,j,m,n,lr,nlj,il1,il2,il2p,incj,nj,i,lj
integer iadr,sadr
logical getsmat
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
smatj=.false.
if ( lw+1.ge.bot) then
call error(18)
return
endif
if (.not.getsmat(fname,lw-1,lw-1,m,n,1,1,lr,nlj)) return
if ( j.gt.n) return
il1=iadr(lstk(lw-1))
il2=iadr(lstk(lw))
C nombre de caracteres de la jieme colonne
incj=(j-1)*m
nj=istk(il1+4+incj+m)-istk(il1+4+incj)
C test de place
err=sadr(il2+4+m+nj+1)-lstk(bot)
if(err.gt.0) then
call error(17)
smatj=.false.
return
endif
istk(il2)=10
istk(il2+1)=m
istk(il2+2)=1
istk(il2+3)=0
il2p=il2+4
il1j=il1+4+incj
istk(il2p)=1
do 14 i=1,m
istk(il2p+i)=istk(il2p-1+i)+istk(il1j+i)-istk(il1j +i-1)
14 continue
lj=istk(il1+4+incj)+ il1+4+m*n
call icopy(nj,istk(lj),1,istk(il2+4+m+1),1)
lstk(lw+1)=sadr(il2+4+m+nj+1)
smatj=.true.
return
end
logical function lmatj(fname,lw,j)
C verifie qu'il y a une liste en lw-1
C et verifie que l'on peut stocker l'extraction du jieme
C element de la liste en lw : si oui l'extraction est faite
C Entree :
C lw : position (entier)
C j : colonne a extraire
C!
C implicit undefined (a-z)
logical getilist
character fname*(*)
integer lw,j,n,il,ilj,slj
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
lmatj=.false.
if ( lw+1.ge.bot) then
call error(18)
return
endif
if (.not.getilist(fname,lw-1,lw-1,n,j,ilj)) return
if ( j.gt.n) return
C a ameliorer
il=iadr(lstk(lw-1))
slj=sadr(il+3+n)+istk(il+2+(j-1))-1
n=istk(il+2+j)-istk(il+2+(j-1))
err=lstk(lw)+n-lstk(bot)
if(err.gt.0) return
call dcopy(n,stk(slj),1,stk(lstk(lw)),1)
lstk(lw+1)=lstk(lw)+n
lmatj=.true.
return
end
logical function pmatj(fname,lw,j)
C verifie qu'il y a une matrice de polynomes en lw-1
C et verifie que l'on peut stocker l'extraction de la jieme
C colonne en lw : si oui l'extraction est faite
C Entree :
C lw : position (entier)
C j : colonne a extraire
C!
C implicit undefined (a-z)
logical getpoly
character fname*(*),name*4
integer lw,j,n,il,it,m,namel,lr,lc
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
pmatj=.false.
if ( lw+1.ge.bot) then
call error(18)
return
endif
if (.not.getpoly(fname,lw-1,lw-1,it,m,n,name,namel,ilp,lr,lc))
$ return
if ( j.gt.n) return
C a ameliorer
il= iadr(lstk(lw-1))
incj=(j-1)*m
il2 = iadr(lstk(lw))
l2 = sadr(il2 + 4)
m2=max(m,1)
l=sadr(il+9+m*n)
n=istk(il+8+m*n)
l2=sadr(il2+9+m2)
n2=istk(il+8+incj+m)-istk(il+8+incj)
err=l2+n2*(it+1)-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call icopy(4,istk(il+4),1,istk(il2+4),1)
il2=il2+8
il=il+8+incj
lj=l-1+istk(il)
istk(il2)=1
do 12 i=1,m2
istk(il2+i)=istk(il2-1+i)+istk(il+i)-istk(il-1+i)
12 continue
call dcopy(n2,stk(lj),1,stk(l2),1)
if(it.eq.1) call dcopy(n2,stk(lj+n),1,stk(l2+n2),1)
lstk(top+1)=l2+n2*(it+1)
il2=il2-8
istk(il2) = 2
istk(il2 + 1) = m2
istk(il2 + 2) = 1
istk(il2 + 3) = it
pmatj=.true.
return
end
subroutine copysmat(fname,flw,tlw)
C copie la matrice de chaine de caracteres stockee en flw
C en tlw, les verifications de dimensions
C ne sont pas faites
C lstk(tlw+1) est modifie si necessaire
C implicit undefined (a-z)
character fname*(*)
integer flw,tlw,dflw,fflw,dtlw
integer iadr
include '../stack.h'
c
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
dflw=iadr(lstk(flw))
fflw=iadr(lstk(flw+1))
dtlw=iadr(lstk(tlw))
call icopy(fflw-dflw,istk(dflw),1,istk(dtlw),1)
lstk(tlw+1)=lstk(tlw) + lstk(flw+1)-lstk(flw)
return
end
subroutine setsimat(fname,lw,i,j,nlr)
C lw designe une matrice de chaine de caracteres
C on veut changer la taille de la chaine (i,j)
C et lui donner la valeur nlr
C cette routine si (i,j) != (m,n) fixe
C le pointeur de l'argument i+j*m +1
C sans changer les valeurs de la matrice
C si (i,j)=(m,n) fixe juste la longeur de la chaine
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position dans la pile
C i,j : indice considere
C m,n : taille de la matrice
C lr :
C
C implicit undefined (a-z)
integer lw,m,i,j,nlr,il,k
character fname*(*)
integer iadr
include '../stack.h'
iadr(l)=l+l-1
il=iadr(lstk(lw))
m=istk(il+1)
k=(i-1)+(j-1)*m
istk(il+4+k+1)=istk(il+4+k)+nlr
return
end
subroutine realmat
C top est une matrice qui est convertie en matrice reelle
C on recupere de la place si top etait complexe
C pas de verifications
C utiliser getmat avant d'appeler realmat
C implicit undefined (a-z)
integer iadr,sadr
integer il,m,n
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
il=iadr(lstk(top))
if (istk(il+3).eq.0) return
m=istk(il+1)
n=istk(il+2)
istk(il+3)=0
lstk(top+1)=sadr(il+4)+m*n
return
end
logical function cremat(fname,lw,it,m,n,lr,lc)
C verifie que l'on peut stocker une matrice [it,m,n]
C a la position lw en renvoyant .true. ou .false.
C suivant la reponse
C Entree :
C lw : position (entier)
C it : type 0 ou 1
C m, n dimensions
C Sortie :
C lr : pointe sur la partie reelle ( si la matrice est a
C a(1,1)=stk(lr)
C si l'on veut acceder a des entiers
C a(1,1)=istk(iadr(lr))
C lc : pointe sur la partie imaginaire si besoin est
C Effet de Bords :
C Si on peut creer une matrice en lw on
C initialise les dimensions et on met a jour
C la position de lw+1
C par contre on ne touche pas au contenu precedent
C stk(lr-1+i...) et stk(lc-1+i...) continuent a donner les valeurs
C de la matrice qui etait precedemment stockee
C!
C implicit undefined (a-z)
character fname*(*)
integer lw,it,m,n,lr,lc
integer il
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
if ( lw+1.ge.bot) then
call error(18)
cremat=.false.
return
endif
il=iadr(lstk(lw))
err=sadr(il+4)+m*n-lstk(bot)
if(err.gt.0) then
call error(17)
cremat=.false.
return
else
cremat=.true.
istk(il)=1
istk(il+1)=m
istk(il+2)=n
istk(il+3)=it
lr=sadr(il+4)
lc=lr+m*n
lstk(lw+1)=sadr(il+4)+m*n*(it+1)
return
endif
end
subroutine copyobj(fname,lw,lwd)
C copie l'objet qui est a la position lw de la pile
C a la position lwd de la pile
C copie faite avec dcopy
C pas de verification
C implicit undefined (a-z)
character fname*(*)
integer lw,lwd
include '../stack.h'
call dcopy(lstk(lw+1)-lstk(lw),stk(lstk(lw)),1,
$ stk(lstk(lwd)),1)
lstk(lwd+1)=lstk(lwd)+lstk(lw+1)-lstk(lw)
return
end
logical function vcopyobj(fname,lw,lwd)
C copie l'objet qui est a la position lw de la pile
C a la position lwd de la pile
C copie faite avec dcopy
C et verification
C implicit undefined (a-z)
include '../stack.h'
character fname*(*)
integer lw,lwd,l,l1
vcopyobj=.false.
l=lstk(lw)
lv=lstk(lw+1)-lstk(lw)
l1=lstk(lwd)
if(lwd+1.ge.bot) then
call error(18)
if(err.gt.0) return
endif
err=lstk(lwd)+lv-lstk(bot)
if(err.gt.0) then
call error(17)
else
vcopyobj=.true.
call dcopy(lv,stk(l),1,stk(l1),1)
lstk(lwd+1)=lstk(lwd)+lv
endif
end
logical function getbmat(fname,topk,lw,m,n,lr)
C verifie qu'il y a une matrice boolenne [m,n]
C a la position lw en renvoyant .true. ou .false.
C suivant la reponse
C Entree :
C lw : position (entier)
C m, n dimensions
C Sortie :
C lr : pointe sur le premier booleen a(1,1)=istk(lr)
C!
C implicit undefined (a-z)
character fname*(*)
integer topk,lw,m,n,lr
integer il
integer iadr
include '../stack.h'
c
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
C test particulier decouvert ds logic.f
if(istk(il).lt.0) il=iadr(istk(il+1))
if(istk(il).ne.4) then
getbmat=.false.
call cvname(ids(1,pt+1),fname,0)
err=rhs+(lw-topk)
call error(208)
else
m=istk(il+1)
n=istk(il+2)
lr=il+3
getbmat=.true.
endif
return
end
logical function crebmat(fname,lw,m,n,lr)
C verifie que l'on peut stocker une matrice boolenne [m,n]
C a la position lw en renvoyant .true. ou .false.
C suivant la reponse
C Entree :
C lw : position (entier)
C m, n dimensions
C Sortie :
C lr : pointe sur le premier booleen a(1,1)=istk(lr)
C Effet de Bords :
C Si on peut creer une matrice en lw on
C initialise les dimensions et on met a jour
C la position de lw+1
C par contre on ne touche pas au contenu precedent
C!
C implicit undefined (a-z)
character fname*(*)
integer lw,m,n,lr
integer il
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
err=il+3+m*n - iadr(lstk(bot))
if(err.gt.0) then
call error(17)
crebmat=.false.
return
else
crebmat=.true.
istk(il)=4
istk(il+1)=m
istk(il+2)=n
lr=il+3
lstk(lw+1)=sadr(il+3+m*n+2)
return
endif
end
logical function swapmat(fname,topk,lw,it1,m1,n1
$ ,mn1,it2,m2,n2,mn2)
C suppose qu'il y a une matrice en lw de taille it1,m1,n1,mn1,
C et une autre en lw+1 de taille it2,m2,n2,mn2
C et echange les matrices et change les valeurs de it1,m1,n1,...
C apres echange la taille de la matrice en lw est stocke ds(it1,m1,n1)
C et celle en lw+1 est stocke ds (it2,m2,n2)
C effet de bord il faut que lw+2 soit une place libre
C
C implicit undefined (a-z)
character fname*(*)
logical cremat,getmat
integer topk,lw,it1,m1,n1,mn1,it2,m2,n2,mn2,lr,lc
swapmat=cremat(fname,lw+1,it1,m1,n1,lr,lc)
if (swapmat.neqv..true.) return
call copyobj(fname,lw,lw+2)
call copyobj(fname,lw+1,lw)
call copyobj(fname,lw+2,lw+1)
if (.not.getmat(fname,topk,lw,it1,m1,n1,lr,lc)) return
if (.not.getmat(fname,topk,lw+1,it2,m2,n2,lr,lc)) return
mn1=m1*n1
mn2=m2*n2
return
end
logical function insmat(topk,lw,it,m,n,lr,lc,lr1,lc1)
C verifie qu'en lw il y a une matrice de taille (it1,m1,n1)
C deplace cette matrice en lw+1, en reservant en lw
C la place pour stocker une matrice (it,m,n)
C insmat verifie qu'on a la place de faire tout ca
C appelle error en cas de probleme
C Remarque : noter par exemple que si it=it1,m1=m,n1=n
C alors apres le contenu de la matrice en lw est une copie de
C celle en lw+1
C Remarque : lw doit etre top car sinon on perd ce qu'il y avait avant
C en lw+1,....,lw+n
C Entree :
C lw : position
C it ,m,n : taille de la matrice a inserer
C Sortie :
C lr : pointe sur la partie reelle de la matrice
C en lw ( a(1,1)=stk(lr))
C lc : pointe sur la partie imaginaire si besoin est
C lr1,lc1 : meme signification mais pour la matrice en lw+1
C ( matrice qui a ete copiee de lw a lw+1
C implicit undefined (a-z)
integer topk, lw,it,m,n,lr,lc
integer it1,m1,n1,lr0,lc0,lr1,lc1
logical getmat,cremat
include '../stack.h'
insmat=getmat('insmat',topk,lw,it1,m1,n1,lr0,lc0)
if (insmat.eqv..false.) return
insmat=cremat('insmat',lw,it,m,n,lr,lc)
if (insmat.eqv..false.) return
insmat=cremat('insmat',lw+1,it1,m1,n1,lr1,lc1)
if (insmat.eqv..false.) return
call dcopy(m1*n1*(it1+1),stk(lr0),-1,stk(lr1),-1)
insmat=.true.
return
end
integer function gettype(lw)
C renvoit le type de lw
C implicit undefined (a-z)
integer lw
integer iadr
include '../stack.h'
c
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
if(istk(il).lt.0) il=iadr(istk(il+1))
gettype=istk(il)
return
end
integer function ogettype(lw)
C renvoit le type de lw
C implicit undefined (a-z)
integer lw
integer iadr
include '../stack.h'
c
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
ogettype=istk(iadr(lstk(lw)))
return
end
subroutine stackinfo(lw,typ)
C imprime le contenu de la pile en lw en mode entier ou
C double precision suivant typ
C ---> a utilier a l'interieur de dbx pour debuguer
C implicit undefined (a-z)
integer iadr,sadr
include '../stack.h'
integer il,lw,i,m,n,typ,l
character*7 t(5)
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
if (lw.eq.0) return
il =iadr(lstk(lw))
if(istk(il).lt.0) il=iadr(istk(il+1))
m =istk(il+1)
n =istk(il+2)
call basout(io,wte,
+ '-----------------stack-info-----------------')
call basout(io,wte,' ')
write(t(1),'(i7)') lw
write(t(2),'(i7)') iadr(lstk(lw+1))
call basout(io,wte,
+ 'lw='//t(1)//'-[istk]-> il lw+1 -[istk]-> '//t(2))
write(t(1),'(i7)') il
write(t(2),'(i7)') istk(il)
write(t(3),'(i7)') istk(il+1)
write(t(4),'(i7)') istk(il+2)
write(t(5),'(i7)') istk(il+3)
call basout(io,wte,
+ 'istk('//t(1)//':..) ->['//t(2)//t(3)//t(4)//t(5)//'....]')
if (typ.eq.1) then
l=sadr(il+4)
nn=min(m*n,3)
write(buf,'(3e15.8,2x)') (stk(l+i),i=0,nn-1)
call basout(io,wte,' {'//buf(1:17*nn)//'}')
else
l=il+4
nn=min(m*n,3)
write(buf,'(3i15,2x)') (istk(l+i),i=0,nn-1)
call basout(io,wte,' {'//buf(1:17*nn)//'}')
endif
call basout(io,wte,
+ '-----------------stack-info-----------------')
return
end
logical function allmat(fname,topk,lw,m,n)
C renvoit .true. si l'argument en lw est une matrice
C -relle ou complexe
C -chaine de caractere
C -polynomes
C fname : nom de la routine appellante pour le message
C d'erreur
C m : nombre de ligne, n:nombre de colonnes
C implicit undefined (a-z)
character fname*(*)
integer topk,lw,m,n
integer iadr
include '../stack.h'
integer il,itype
c
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
itype=istk(il)
if(itype.ne.1.and.itype.ne.2.and.itype.ne.10) then
err=rhs+(lw-topk)
call cvname(ids(1,pt+1),fname,0)
call error(209)
allmat=.false.
return
endif
m=istk(il+1)
n=istk(il+2)
allmat=.true.
return
end
subroutine allmatset(fname,lw,m,n)
C refixe la taille d'une matrice de n'importe quoi
C sans se preocuper du contenu
C implicit undefined (a-z)
character fname*(*)
integer lw,m,n
integer iadr
include '../stack.h'
integer il
c
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
istk(il+1)=m
istk(il+2)=n
return
end
logical function getilist(fname,topk,lw,n,i,ili)
C renvoit .true. si l'argument en lw est une liste
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position ds la pile
C i : element demande
C Sortie :
C n : nombre d'elements ds la liste
C ili : le ieme element commence en istk(iadr(ili))
C ==> pour recuperer un argument il suffit
C de faire un lk=lstk(top);lstk(top)=ili; getmat(...,top,...);stk(top)=lk
C implicit undefined (a-z)
character fname*(*)
integer topk,lw,n,i,ili
integer iadr,sadr
integer il,itype
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
if(istk(il).lt.0) il=iadr(istk(il+1))
itype=istk(il)
if(itype.ne.15.and.itype.ne.16) then
err=rhs+(lw-topk)
call cvname(ids(1,pt+1),fname,0)
call error(210)
getilist=.false.
return
endif
n=istk(il+1)
if ( i.le.n) then
ili=sadr(il+3+n) + istk(il+2+(i-1))-1
else
ili=0
endif
getilist=.true.
end
subroutine objvide(fname,lw)
C cree un objet vide en lw et met a jour lw+1
C en fait lw doit etre top
C verifie les cas particuliers lw=0 ou lw=1
C ainsi que le cas particulier ou une fonction
C n'a pas d'arguments (ou il faut faire top=top+1)
C implicit undefined (a-z)
character fname*(*)
integer lw
integer iadr
include '../stack.h'
c
iadr(l)=l+l-1
c sadr(l)=(l/2)+1
c
if (lw.eq.0.or.rhs.lt.0) lw=lw+1
istk(iadr(lstk(lw)))=0
lstk(lw+1)=lstk(lw)+2
return
end
logical function getexternal(fname,topk,lw,name,type)
C renvoit .true. si l'argument en lw est un ``external''
C sinon appelle error et renvoit .false.
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C topk : numero d'argument d'appel pour le message d'ereur
C lw : position ds la pile
C Sortie
C type vaut true ou false
C si l'external est de type chaine de caracteres
C la chaine est mise ds name
C et type est mise a true
C
C implicit undefined (a-z)
character fname*(*),name*6
integer topk,lw,m,n,lr,nlr,il,gettype
logical getsmat,type
include '../stack.h'
il=gettype(lw)
if(il.eq.11.or.il.eq.13.or.il.eq.15) then
getexternal=.true.
type =.false.
else if (il.eq.10) then
getexternal=getsmat(fname,topk,lw,m,n,1,1,lr,nlr)
type = .true.
name = ' '
if (getexternal.neqv..false.) call cvstr(nlr,istk(lr),name,1)
else
err=rhs+(lw-topk)
call cvname(ids(1,pt+1),fname,0)
call error(211)
getexternal=.false.
return
endif
return
end
logical function getpoly(fname,topk,lw,it,m,n,name,
$ namel,ilp,lr,lc)
C renvoit .true. si l'argument en lw est une matrice de polynome
C sinon appelle error et renvoit .false.
C Entree :
C fname : nom de la routine appellante pour le message
C d'erreur
C lw : position ds la pile
C Sortie
C [it,m,n] caracteristiques de la matrice
C name : nom de la variable muette ( character*4)
C namel : taille de name <=4 ( uncounting trailling blanks)
C soit lij=istk(ilp+(i-1)+(j-1)*m)
C alors le degre zero de l'elements (i,j) est en
C stk(lr+lij) (partie reelle ) et stk(lc+lij) (imag)
C le degre de l'elt (i,j)= l(i+1)j - lij -1
C implicit undefined (a-z)
integer topk,lw,it,m,n,lr,lc,ilp,il,namel
character fname*(*)
character*4 name
include '../stack.h'
integer iadr,sadr
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
C test particulier decouvert ds logic.f
if(istk(il).ne.2) then
getpoly=.false.
err=rhs+(lw-topk)
call cvname(ids(1,pt+1),fname,0)
call error(212)
else
m=istk(il+1)
n=istk(il+2)
it=istk(il+3)
namel=4
call cvstr(namel,istk(il+4),name,1)
11 continue
if(namel.gt.0) then
if ( name(namel:namel).eq.' ') then
namel=namel-1
goto 11
endif
endif
ilp=il+8
lr=sadr(ilp+m*n+1)-1
lc=lr +istk(ilp+m*n)-1
getpoly=.true.
endif
return
end
logical function crewimat(fname,lw,m,n,lr)
C matrice de travail entiere
C verifie que l'on peut stocker une matrice d'entier [m,n]
C a la position lw en renvoyant .true. ou .false.
C suivant la reponse
C Entree :
C lw : position (entier)
C m, n dimensions
C Sortie :
C lr : pointe sur le premier entier a(1,1)=istk(lr)
C Effet de Bords :
C Si on peut creer une matrice en lw on
C initialise les dimensions et on met a jour
C la position de lw+1
C par contre on ne touche pas au contenu precedent
C!
C implicit undefined (a-z)
character fname*(*)
integer lw,m,n,lr
integer il
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
err=il+3+m*n - iadr(lstk(bot))
if(err.gt.0) then
call error(17)
crewimat=.false.
return
else
crewimat=.true.
istk(il)=4
istk(il+1)=m
istk(il+2)=n
lr=il+3
lstk(lw+1)=sadr(il+3+m*n+2)
return
endif
end
logical function getwimat(fname,topk,lw,m,n,lr)
C verifie qu'il y a une matrice boolenne [m,n]
C a la position lw en renvoyant .true. ou .false.
C suivant la reponse
C Entree :
C lw : position (entier)
C m, n dimensions
C Sortie :
C lr : pointe sur le premier booleen a(1,1)=istk(lr)
C!
C implicit undefined (a-z)
character fname*(*)
integer topk,lw,m,n,lr
integer il
integer iadr,sadr
include '../stack.h'
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
il=iadr(lstk(lw))
C test particulier decouvert ds logic.f
if(istk(il).lt.0) il=iadr(istk(il+1))
if(istk(il).ne.4) then
getwimat=.false.
err=rhs+(lw-topk)
call cvname(ids(1,pt+1),fname,0)
call error(213)
else
m=istk(il+1)
n=istk(il+2)
lr=il+3
getwimat=.true.
endif
return
end
|