File: stack2.f

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (1619 lines) | stat: -rw-r--r-- 48,658 bytes parent folder | download
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
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
      logical function putlhsvarFD()
c     ===========================
c     This function put on the stack the lhs 
c     variables which are at position lhsvar(i) 
c     on the calling stack 
c     Warning : this function supposes that the last 
c     variable on the stack is at position top-rhs+nbvars 

c     Copyright INRIA
      include '../stack.h'
      logical mvtotop, tryenhaut, mvfromto
      integer iadr,sadr
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1

      nbvars1=0
      do 1 k=1,lhs
         nbvars1=max(nbvars1,lhsvar(k))
 1    continue
      putlhsvarFD=.false.
      misesenbas=0
 11   continue
      mvtotop=.true.
      iv=0
      do 111 ivar=1,lhs
         mvtotop=mvtotop.and.tryenhaut(top-rhs+ivar,lhsvar(ivar))
         iv=iv+1
         if(.not.mvtotop) then
            misesenbas=misesenbas+1
            if(.not.mvfromto(top-rhs+nbvars1+misesenbas,lhsvar(iv))) 
     $           return
            lhsvar(iv)=nbvars1+misesenbas
c           to prepare next pass 
            ntypes(nbvars1+misesenbas)=ichar('$')
            goto 11
         endif
 111  continue
      do 100 ivar=1,lhs
          if(.not.mvfromto(top-rhs+ivar,lhsvar(ivar))) return
 100   continue
      top=top-rhs+lhs
      putlhsvarFD=.true.
      nbvars=0
      return
      end

      logical function putlhsvar()
c     ===========================
c     This function put on the stack the lhs 
c     variables which are at position lhsvar(i) 
c     on the calling stack 
c     Warning : this function supposes that the last 
c     variable on the stack is at position top-rhs+nbvars 

      include '../stack.h'
      logical mvtotop, tryenhaut, mvfromto,lcres
      integer iadr,sadr
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1

      nbvars1=0
      do 1 k=1,lhs
         nbvars1=max(nbvars1,lhsvar(k))
 1    continue

c        check if output variabe are in increasing order in the stack 
      lcres=.true.
      putlhsvar=.false.
      ibufprec=0
      do 105 i=1,lhs 
         if ( lhsvar(i).lt.ibufprec) then 
            lcres=.false.
            goto 106 
         else
            ibufprec = lhsvar(i)
         endif
 105  continue
 106  continue
      if (.not.lcres) then 
c         write(06,*) 'first pass '
         do 101 ivar=1,lhs
c            write(06,*) 'je bouge',top-rhs+nbvars1+ivar,'<--',
c     $           lhsvar(ivar)
            if(.not.mvfromto(top-rhs+nbvars1+ivar,lhsvar(ivar))) return
            lhsvar(ivar)=nbvars1+ivar
c           we change the type of variable nbvars1 + ivar 
c           then at the next pass we will only perform a dcopy 
            if ( nbvars1+ivar .gt. intersiz ) then 
               buf = 'putlhsvar : intersiz is too small '
               call error(998) 
               return
            endif
            ntypes(nbvars1+ivar) = ichar('$')
 101     continue
      endif
c      write(06,*) 'second pass'
      do 100 ivar=1,lhs
c         write(06,*) 'je bouge',top-rhs+ivar,'<--',lhsvar(ivar)
         if(.not.mvfromto(top-rhs+ivar,lhsvar(ivar))) return
 100  continue     
      top=top-rhs+lhs
      putlhsvar=.true.
      nbvars=0
      return
      end

      logical function mvfromto(itopl,i)
c     ==================================
c     this routines copies the variable number i 
c     (created by getrhsvar or createvar or by mvfromto itself 
c     in a precedent call)
c     from its position on the stack to position itopl
c     returns false if there's no more stack space available
c     - if type(i) # '$'  : This variable is at 
c                         position lad(i) on the stack )
c                         and itopl must be the first free position 
c                         on the stack 
c                         copy is performed + type conversion (type(i))
c     - if type(i) == '$': then it means that object at position i 
c                         is the result of a previous call to mvfromto
c                         a copyobj is performed and itopl can 
c                         can be any used position on the stack 
c                         the object which was at position itopl 
c                         is replaced by object at position i 
c                         (and access to object itopl+1 can be lost if 
c                         the object at position i is <> from object at 
c                         position itopl 
c     ===============================================
      include '../stack.h'

      logical cremat,cresmat2,vcopyobj,crebmat
      character*1 type
      integer iadr,sadr,cadr
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
      cadr(l)=l+l+l+l-3
c
      mvfromto=.false.
      m=nbrows(i)
      n=nbcols(i)
      it=itflag(i)
      ivol=m*n
      type=char(ntypes(i))
c      write(06,*) '      m=',m,'  n=',n,' type',type
      if(type.eq.'i') then
         if(.not.cremat('mvfromto',itopl,it,m,n,lrs,lcs)) return
         call stacki2d(m*n*(it+1),lad(i),lrs) 
         lad(i)=iadr(lrs)
      elseif(type.eq.'r') then
         if(.not.cremat('mvfromto',itopl,it,m,n,lrs,lcs)) return
         call stackr2d(m*n*(it+1),lad(i),lrs) 
         lad(i)=iadr(lrs)
      elseif(type.eq.'d') then
         if(.not.cremat('mvfromto',itopl,it,m,n,lrs,lcs)) return
c        no copy if the two objects are the same 
c        the cremat above is kept to deal with possible size changes 
         if (lad(i).ne.lrs) then 
            call dcopy(m*n*(it+1),stk(lad(i)),1,stk(lrs),1)
            lad(i)=lrs
         endif
      elseif(type.eq.'c') then
         if(.not.cresmat2('mvfromto',itopl,m*n,lrs)) return
         ivol=m*n
         call stackc2i(m*n,lad(i),lrs) 
         lad(i)=cadr(lrs)
      elseif(type.eq.'b') then
         if(.not.crebmat('mvfromto',itopl,m,n,lrs)) return
         call icopy(m*n,istk(lad(i)),1,istk(lrs),1) 
         lad(i)=lrs
      elseif(type.eq.'$') then
c     special case 
c         write(06,*) '   je copie ',top-rhs+i,'-->',itopl
         if ( top-rhs+i .ne. itopl ) then 
            mvfromto=vcopyobj('mvfromto',top-rhs + i,itopl)
         else
            mvfromto=.true.
         endif
         if (.not.mvfromto) return 
      endif
      mvfromto=.true.
      return
      end

      subroutine cvstr1(n,line,str,job)
C     ====================================================================
C     Like cvstr but \n are kept and the conversion can be done ``on place''
C     ( line and str points on the same memory zone )
C     ====================================================================
      include '../stack.h'
      character str(*)
      integer n,line(n)
      if(job.ne.0) then
         call cvs2c(n,line,str,csiz,alfa,alfb)
      else
         call cvc2s(n,line,str,csiz,alfa,alfb)
      endif
      return
      end

      logical function tryenhaut(itopl,i)
c     ===================================
c     this routines check if the creation of 
c     a variable at position itopl on the stack would give an 
c     adresse >= adress of the variable number i (returns true )
c     (or < returns false )

      include '../stack.h'
      logical fakecremat,fakecresmat2,fakecrebmat
      integer iadr,sadr
      character*1 type
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
c
      m=nbrows(i)
      n=nbcols(i)
      type=char(ntypes(i))
      it=itflag(i)
      tryenhaut=.true.
      if(type.eq.'i') then
         if(.not.fakecremat(itopl,it,m,n,lrs,lcs)) return
         if(it.eq.0) then 
            if(sadr(lad(i)).le.lrs) then 
               tryenhaut=.false.
            endif
         else
            if(sadr(ladc(i)).le.lcs) then 
               tryenhaut=.false.
            endif
         endif
      elseif(type.eq.'r') then
         if(.not.fakecremat(itopl,it,m,n,lrs,lcs)) return
         if(it.eq.0) then 
            if(sadr(lad(i)).le.lrs) then 
               tryenhaut=.false.
            endif
         else
            if(sadr(ladc(i)).le.lcs) then 
               tryenhaut=.false.
            endif
         endif
      elseif(type.eq.'b') then
         if(.not.fakecrebmat(itopl,m,n,lrs)) return
         if(lad(i).le.lrs) then
            tryenhaut=.false.
         endif
      elseif(type.eq.'d') then
         if(.not.fakecremat(itopl,it,m,n,lrs,lcs)) return
         if(it.eq.0) then 
            if(lad(i).le.lrs) then 
               tryenhaut=.false.
            endif
         else
            if(ladc(i).le.lcs) then 
               tryenhaut=.false.
            endif
         endif
      elseif(type.eq.'c') then
         if(.not.fakecresmat2(itopl,m*n,lrs)) return
         if(sadr(sadr(lad(i))).le.lrs) then
            tryenhaut=.false.
         endif
      endif
      return
      end


      logical  function isref(lw)
C     ---------------------------------------
C     checks if variable number lw is on the stack 
C     or is just a reference to a variable on the stack 
C     ---------------------------------------
      include '../stack.h'
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
      cadr(l)=l+l+l+l-3
c
      isref=.false.
      if (lw.gt.intersiz) then 
         buf = 'isref :too many arguments in the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      nbvars=max(lw,nbvars)
      lw1=lw+top-rhs
      if((lw.lt.0)) then
         buf='bad call to isref! (1rst argument)'
         call error(998)
         return
      endif
      il=iadr(lw1)
      if(istk(il).lt.0) isref=.true.
      return
      end

      logical function isopt(k,name) 
C     ---------------------------------------
C     same as isoptlw but checks the k-th argument 
C     this function only works if top is not changed 
C     ---------------------------------------
      integer k
      character name*(*)
      include '../stack.h'
      logical isoptlw
      isopt = isoptlw(top,k+top-rhs,name)
      return
      end

      integer function vartype(number)
C     ==================================================
C     type of variable number number in the stack 
      integer lw,iadr,gettype
      include '../stack.h'
      vartype = gettype(number+top-rhs)
      return 
      end



      logical function createvar(lw,type,m,n,lr)
c     ===========================================================
c     create a variable number lw in the stack of type 
c     type and size m,n 
c     the argument must be of type type ('c','d','r','i','l','b')
c     return values m,n,lr 
c     c : string  (m-> number of characters and n->1)
c     d,r,i : matrix of double,float or integer 
c     b : boolean matrix 
c     l : a list  (m-> number of elements and n->1)
c         for each element of the list an other function 
c         must be used to <<get>> them 
c     side effects : arguments in the common intersci are modified
c     see examples in addinter-examples
c     ===========================================================
c     cremat+fill intersci common
C      implicit undefined (a-z)
      include '../stack.h'
      integer lw,it,m,n,lr
      integer iadr,sadr,cadr
      logical cremat, cresmat2,crebmat
      character*1 type
      character fname*(nlgh)
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
      cadr(l)=l+l+l+l-3
c
      it=0
      createvar=.false.
      fname = 'createvar'
      if (lw.gt.intersiz) then 
         buf = 'createvar :too many arguments in the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      nbvars=max(lw,nbvars)
      lw1=lw+top-rhs
      if((lw.lt.0)) then
         buf='bad call to createvar! (1rst argument)'
         call error(998)
         return
      endif
      if(type.eq.'c') then
         if(.not.cresmat2(fname,lw1,m*n,lr)) return
         ntypes(lw)=ichar(type)
         nbrows(lw)=m*n
         nbcols(lw)=1
         lr=cadr(lr)
         do 10 i=0,m*n-1
            cstk(lr+i:lr+i)=' '
 10      continue
         cstk(lr+m*n:lr+m*n)=char(0)
         lad(lw)=lr
         createvar=.true.
      elseif(type.eq.'d') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lcs)) return
         ntypes(lw)=ichar(type)
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=0
         lad(lw)=lr
         createvar=.true.
      elseif(type.eq.'l') then
c     if(.not.crelist(lw1,m,lr)) return
         call crelist(lw1,m,lr)
         ntypes(lw)=ichar('$')
         nbrows(lw)=m
         nbcols(lw)=1
         itflag(lw)=0
         lad(lw)=lr
         createvar=.true.
      elseif(type.eq.'r') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lcs)) return
         lr=iadr(lr)
         ntypes(lw)=ichar(type)
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=0
         lad(lw)=lr
         createvar=.true.
      elseif(type.eq.'i') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lcs)) return
         lr=iadr(lr)
         ntypes(lw)=ichar(type)
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=0
         lad(lw)=lr
         createvar=.true.
      elseif(type.eq.'b') then
         if(.not.crebmat(fname,lw1,m,n,lr)) return
         ntypes(lw)=ichar(type)
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=0
         lad(lw)=lr
         createvar=.true.
      endif
      return
      end



      logical function createcvar(lw,type,it,m,n,lr,lc)
c     ===========================================================
c     create a variable number lw in the stack of type 
c     type and size m,n 
c     the argument must be of type type ('d','r','i')
c     return values m,n,lr 
c     d,r,i : matrix of double,float or integer 
c     side effects : arguments in the common intersci are modified
c     see examples in addinter-examples
c     Like createvar but for complex matrices 
c     ===========================================================
c     cremat+fill intersci common
C      implicit undefined (a-z)
      include '../stack.h'
      integer lw,it,m,n,lr
      integer iadr,sadr,cadr
      logical cremat, cresmat2,crebmat
      character*1 type
      character fname*(nlgh)
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
      cadr(l)=l+l+l+l-3
c
      createcvar=.false.
      fname = 'createcvar'
      if (lw.gt.intersiz) then 
         buf = 'createcvar :too many arguments in the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      nbvars=max(lw,nbvars)
      lw1=lw+top-rhs
      if((lw.lt.0)) then
         buf='bad call to createcvar! (1rst argument)'
         call error(998)
         return
      endif
      if (type.eq.'d') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lc)) return
         ntypes(lw)=ichar(type)
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=it
         lad(lw)=lr
         ladc(lw)=lc
         createcvar=.true.
      elseif(type.eq.'r') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lc)) return
         lr=iadr(lr)
         lc=lr+m*n
         ntypes(lw)=ichar(type)
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=it
         lad(lw)=lr
         ladc(lw)=lc
         createcvar=.true.
      elseif(type.eq.'i') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lc)) return
         lr=iadr(lr)
         lc=lr+m*n
         ntypes(lw)=ichar(type)
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=it
         lad(lw)=lr
         ladc(lw)=lc
         createcvar=.true.
      endif
      return
      end

      logical function createlist(lw,nel)
c     ===========================================================
c     create a variable number lw on the stack of type 
c     list with nel elements 
c     ===========================================================
c     cremat+fill intersci common
C      implicit undefined (a-z)
      include '../stack.h'
      integer lw,it,m,n,lr
      integer iadr,sadr,cadr
      character fname*(nlgh)
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
      cadr(l)=l+l+l+l-3
c
      it=0
      createlist=.false.
      fname = 'createlist'
      if (lw.gt.intersiz) then 
         buf = 'createlist :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      nbvars=max(lw,nbvars)
      lw1=lw+top-rhs
      if((lw.lt.0)) then
         buf='bad call to createlist! (1rst argument)'
         call error(998)
         return
      endif
      call crelist(lw1,nel,lr)
      ntypes(lw)=ichar('$')
      nbrows(lw)=nel
      nbcols(lw)=1
      lad(lw)=lr
      createlist=.true.
      return 
      end


      logical function createvarfrom(lw,type,m,n,lr,lar)
c     ===========================================================
c     create a variable number lw on the stack of type 
c     type and size m,n 
c     the argument must be of type type ('c','d','r','i','b')
c     return values m,n,lr,lar 
c     lar is also an input value 
c     if lar != -1 var is filled with data stored at lar 
c     ===========================================================
c     cremat+fill intersci common
C      implicit undefined (a-z)
      include '../stack.h'
      integer lw,it,m,n,lr
      integer iadr,sadr,cadr
      logical cremat, cresmat2,crebmat
      character*1 type
      character fname*(nlgh)
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
      cadr(l)=l+l+l+l-3
c
      it=0
      createvarfrom=.false.
      fname = 'createvarfrom'
      if (lw.gt.intersiz) then 
         buf = 'createvarfrom :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      nbvars=max(lw,nbvars)
      lw1=lw+top-rhs
      if((lw.lt.0)) then
         buf='bad call to createvarfrom! (1rst argument)'
         call error(998)
         return
      endif
      if(type.eq.'c') then
         if(.not.cresmat2(fname,lw1,m*n,lr)) return
         ntypes(lw)=ichar('$')
         nbrows(lw)=m*n
         nbcols(lw)=1
         if (lar.ne.-1) then 
            call cvstr1(m*n,istk(lr),cstk(lar:lar+m*n),0)
         endif
         lar = lr 
         lr=cadr(lr)
         lad(lw)=lr
         createvarfrom=.true.
      elseif(type.eq.'d') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lcs)) return
         ntypes(lw)=ichar('$')
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=0
         lad(lw)=lr
         if (lar.ne.-1) then 
            call dcopy(m*n,stk(lar),1,stk(lr),1)
         endif
         lar = lr 
         createvarfrom=.true.
      elseif(type.eq.'r') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lcs)) return
         if (lar.ne.-1) then 
            call rea2db(m*n,sstk(lar),1,stk(lr),1)
         endif
         lar = lr 
         lr=iadr(lr)
         ntypes(lw)=ichar('$')
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=0
         lad(lw)=lr
         createvarfrom=.true.
      elseif(type.eq.'i') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lcs)) return
         if (lar.ne.-1) then 
            call int2db(m*n,istk(lar),1,stk(lr),1)
         endif
         lar = lr 
         lr=iadr(lr)
         ntypes(lw)=ichar('$')
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=0
         lad(lw)=lr
         createvarfrom=.true.
      elseif(type.eq.'b') then
         if(.not.crebmat(fname,lw1,m,n,lr)) return
         if (lar.ne.-1) then 
            call icopy(m*n,istk(lar),1,istk(lr),1)
         endif
         lar = lr 
         ntypes(lw)=ichar('$')
         nbrows(lw)=m
         nbcols(lw)=n
         lad(lw)=lr
         createvarfrom=.true.
      endif
      return
      end


      logical function createcvarfrom(lw,type,it,m,n,lr,lc,lar,lac)
c     ===========================================================
c     create a variable number lw on the stack of type 
c     type and size m,n 
c     the argument must be of type type ('d','r','i')
c     return values it,m,n,lr,lc,lar,lac
c     lar is also an input value 
c     if lar != -1 var is filled with data stored at lar 
c     idem for lac 
c     ==> like createvarfrom for complex matrices 
c     ===========================================================
c     cremat+fill intersci common
C      implicit undefined (a-z)
      include '../stack.h'
      integer lw,it,m,n,lr
      integer iadr,sadr,cadr
      logical cremat, cresmat2,crebmat
      character*1 type
      character fname*(nlgh)
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
      cadr(l)=l+l+l+l-3
c
      createcvarfrom=.false.
      fname = 'createcvarfrom'
      if (lw.gt.intersiz) then 
         buf = 'createcvarfrom :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      nbvars=max(lw,nbvars)
      lw1=lw+top-rhs
      if((lw.lt.0)) then
         buf='bad call to createcvarfrom! (1rst argument)'
         call error(998)
         return
      endif
      if(type.eq.'d') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lc)) return
         ntypes(lw)=ichar('$')
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=it
         lad(lw)=lr
         ladc(lw)=lc
         if (lar.ne.-1) then 
            call dcopy(m*n,stk(lar),1,stk(lr),1)
         endif
         if (lac.ne.-1) then 
            call dcopy(m*n,stk(lac),1,stk(lc),1)
         endif
         lar = lr 
         lac = lc
         createcvarfrom=.true.
      elseif(type.eq.'r') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lc)) return
         if (lar.ne.-1) then 
            call rea2db(m*n,sstk(lar),1,stk(lr),1)
         endif
         if (lac.ne.-1) then 
            call rea2db(m*n,sstk(lac),1,stk(lc),1)
         endif
         lar = lr 
         lac = lc
         lr=iadr(lr)
         lc=lr+m*n
         ntypes(lw)=ichar('$')
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=it
         lad(lw)=lr
         ladc(lw)=lc
         createcvarfrom=.true.
      elseif(type.eq.'i') then
         if(.not.cremat(fname,lw1,it,m,n,lr,lcs)) return
         if (lar.ne.-1) then 
            call int2db(m*n,istk(lar),1,stk(lr),1)
         endif
         if (lac.ne.-1) then 
            call int2db(m*n,istk(lac),1,stk(lc),1)
         endif
         lar = lr
         lac = lc 
         lr=iadr(lr)
         lc=lr+m*n
         ntypes(lw)=ichar('$')
         nbrows(lw)=m
         nbcols(lw)=n
         itflag(lw)=it
         lad(lw)=lr
         ladc(lw)=lc
         createcvarfrom=.true.
      endif
      return
      end

      logical function createlistvar(lnumber,number,type,m,n,lr,lar)
c     ===========================================================
c     This function must be called after createvar(lnumber,'l',...)
c     Argument lnumber is a list 
c     we want here to get its argument number number
c     the argument must be of type type ('c','d','r','i','b')
c     input values lnumber,number,type,lar 
c     lar : input value ( -1 or the adress of an object which is used 
c           to fill the new variable data slot.
c     lar must be a variable since it is used as input and output
c     return values m,n,lr,lar 
c         (lar --> data is coded at stk(lar) 
c          lr  --> data is coded at istk(lr) or stk(lr) or sstk(lr) 
c                  or cstk(lr)
c     c : string  (m-> number of characters and n->1)
c     d,r,i : matrix of double,float or integer 
c     ============================================================
      include '../stack.h'
      logical listcresimat,listcremat,listcrestring
      character*1 type
      character fname*(nlgh)
      character name*(nlgh)
      logical getexternal,ltype,listcrebmat
      external setfeval
c     cadr : istk--->cstk
       integer iadr, cadr
c
       iadr(l)=l+l-1
       cadr(l)=l+l+l+l-3
c
      it=0
      fname = 'createlistvar'
      createlistvar=.false.
      if (lnumber.gt.intersiz) then 
         buf = 'createlistvar :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      if(type.eq.'c') then
         n=1
         if(.not.listcrestring(fname,lnumber+top-rhs,number,
     $        lad(lnumber),        m,lr)) return
         if (lar.ne.-1) then 
            call cvstr1(m,istk(lr),cstk(lar:lar+m*n),0)
         endif
         lar=lr
         lr=cadr(lr)
      elseif(type.eq.'d') then
         if(.not.listcremat(fname,lnumber+top-rhs,number,
     $        lad(lnumber),it,
     $        m,n,lr,lc )) return
         if (lar.ne.-1) then 
            call dcopy(m*n,stk(lar),1,stk(lr),1)
         endif
         lar=lr
      elseif(type.eq.'r') then
         if(.not.listcremat(fname,lnumber+top-rhs,number,
     $        lad(lnumber),it,
     $        m,n,lr,lc )) return
         if (lar.ne.-1) then 
            call rea2db(m*n,sstk(lar),1,stk(lr),1)
         endif
         lar=lr
         lr=iadr(lr)
      elseif(type.eq.'i') then
         if(.not.listcremat(fname,lnumber+top-rhs,number,
     $        lad(lnumber),it,
     $        m,n,lr,lc )) return
         if (lar.ne.-1) then 
            call int2db(m*n,istk(lar),1,stk(lr),1)
         endif
         lar = lr 
         lr=iadr(lr)
      elseif(type.eq.'b') then
         if(.not.listcrebmat(fname,lnumber+top-rhs,number,
     $        lad(lnumber),
     $        m,n,lr)) return
         if (lar.ne.-1) then 
            call icopy(m*n,istk(lar),1,istk(lr),1)
         endif
         lar = lr 
      else 
         buf='createlistvar: bad third argument!'
         call error(998)
         return 
      endif
      createlistvar=.true.
      return
      end


      logical function createlistcvar(lnumber,number,type,it,
     $     m,n,lr,lc,lar,lac)
c     ===========================================================
c     This function must be called after createvar(lnumber,'l',...)
c     Argument lnumber is a list 
c     we want here to get its argument number number
c     the argument must be of type type ('c','d','r','i','b')
c     input values lnumber,number,type,lar 
c     lar : input value ( -1 or the adress of an object which is used 
c           to fill the new variable data slot.
c     return values m,n,lr,lar 
c         (lar --> data is coded at stk(lar) 
c          lr  --> data is coded at istk(lr) or stk(lr) or sstk(lr) 
c                  or cstk(lr)
c     c : string  (m-> number of characters and n->1)
c     d,r,i : matrix of double,float or integer 
c     ============================================================
      include '../stack.h'
      logical listcresimat,listcremat,listcrestring
      character*1 type
      character fname*(nlgh)
      character name*(nlgh)
      logical getexternal,ltype,listcrebmat
      external setfeval
c     cadr : istk--->cstk
       integer iadr, cadr
c
       iadr(l)=l+l-1
       cadr(l)=l+l+l+l-3
c
      fname = 'createlistcvar'
      createlistcvar=.false.
      if (lnumber.gt.intersiz) then 
         buf = 'createlistcvar :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      if(type.eq.'d') then
         if(.not.listcremat(fname,lnumber+top-rhs,number,
     $        lad(lnumber),it,
     $        m,n,lr,lc )) return
         if (lar.ne.-1) then 
            call dcopy(m*n,stk(lar),1,stk(lr),1)
         endif
         if (lac.ne.-1) then 
            call dcopy(m*n,stk(lac),1,stk(lc),1)
         endif
         lar=lr
         lac=lc
      elseif(type.eq.'r') then
         if(.not.listcremat(fname,lnumber+top-rhs,number,
     $        lad(lnumber),it,
     $        m,n,lr,lc )) return
         if (lar.ne.-1) then 
            call rea2db(m*n,sstk(lar),1,stk(lr),1)
         endif
         if (lac.ne.-1) then 
            call rea2db(m*n,sstk(lac),1,stk(lc),1)
         endif
         lar=lr
         lac=lc
         lr=iadr(lr)
         lc=lr+m*n
      elseif(type.eq.'i') then
         if(.not.listcremat(fname,lnumber+top-rhs,number,
     $        lad(lnumber),it,
     $        m,n,lr,lc )) return
         if (lar.ne.-1) then 
            call int2db(m*n,istk(lar),1,stk(lr),1)
         endif
         if (lac.ne.-1) then 
            call int2db(m*n,istk(lac),1,stk(lc),1)
         endif
         lar = lr 
         lac = lc 
         lr=iadr(lr)
         lc=lr+m*n
      else 
         buf='createlistcvar: bad third argument!'
         call error(998)
         return 
      endif
      createlistcvar=.true.
      return
      end


      logical function fakecresmat2(lw,nchar,lr)
c     ===========================================================
C     verifie que l'on peut stocker une chaine de caracteres
C     de taille nchar a  la position lw en renvoyant 
C     .true. ou .false.
C      implicit undefined (a-z)
c     ===========================================================
      integer lw,nchar,il,ilast,lr
      integer iadr,sadr
      include '../stack.h'
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
c
      il=iadr(lstk(lw))
      err=sadr(il+4+(nchar+1))-lstk(bot)
      if(err.gt.0) then
         call error(17)
         fakecresmat2=.false.
         return
      else
         fakecresmat2=.true.
         ilast=il+4+1
         lstk(lw+1)=sadr(ilast+istk(ilast))
         lr=ilast+ istk(ilast-1)
         return
      endif
      end


      logical function getrhsvar(number,type,m,n,lr)
c     ===========================================================
c     get the argument number <<number>> 
c     the argument must be of type type ('c','d','r','i','f','l','b')
c     return values m,n,lr 
c     c : string  (m-> number of characters and n->1)
c     d,r,i : matrix of double,float or integer 
c     f : external (function)
c     b : boolean matrix 
c     l : a list  (m-> number of elements and n->1)
c         for each element of the list an other function 
c         must be used to <<get>> them 
c     side effects : arguments in the common intersci are modified
c     see examples in addinter-examples
c     ============================================================
      include '../stack.h'
      logical getsmat,getmat,getbmat
      integer topk
      character*1 type
      character fname*(nlgh)
      character name*(nlgh)
      logical getexternal,ltype,getilist
      external setfeval

c     cadr : istk--->cstk
      integer iadr, cadr
c
      iadr(l)=l+l-1
      cadr(l)=l+l+l+l-3
c
      fname='getrhsvar'
      nbvars=max(nbvars,number)
      call cvname(ids(1,pt+1),fname,1)
      getrhsvar=.false.
      lw=number+top-rhs
      if(number.gt.rhs) then
         buf='bad call to getrhsvar! (1rst argument)'
         call error(998)
         return
      endif
      if (number.gt.intersiz) then 
         buf = 'getrhsvar :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      topk=top
      if(type.eq.'c') then
         n=1
         if(.not.getsmat(fname,topk,lw,m1,n1,1,1,lr,m)) return
         call in2str(m*n,istk(lr),cstk(cadr(lr):cadr(lr)+m*n))
         ntypes(number)=ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         lr=cadr(lr)
         lad(number)=lr
      elseif(type.eq.'d') then
         if(.not.getmat(fname,topk,lw,it,m,n,lr,lc )) return
         ntypes(number)=ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         itflag(number)=0
         lad(number)=lr
      elseif(type.eq.'r') then
         if(.not.getmat(fname,topk,lw,it,m,n,lr,lc )) return
         call simple(m*n,stk(lr),sstk(iadr(lr)))
         lr=iadr(lr)
         ntypes(number)=ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         itflag(number)=0
         lad(number)=lr
      elseif(type.eq.'i') then
         if(.not.getmat(fname,topk,lw,it,m,n,lr,lc )) return
         call entier(m*n,stk(lr),istk(iadr(lr)))
         lr=iadr(lr)
         ntypes(number)=ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         itflag(number)=0
         lad(number)=lr
      elseif(type.eq.'b') then
         if(.not.getbmat(fname,topk,lw,m,n,lr)) return
         ntypes(number)=ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         lad(number)=lr
      elseif(type.eq.'l') then
         n=1
         if(.not.getilist(fname,topk,lw,m,n,lr)) return
         ntypes(number)=ichar('$')
c        pour avoir une copie directe ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         lad(number)=0 
      elseif(type.eq.'f') then
c      logical function getrhsvar(number,type,m,n,lr)
         lr=lstk(lw)
         ils=iadr(lr)+1
         m=istk(ils)
         ile=ils+nsiz*m+1
         n=istk(ile)
         if (.not.getexternal(fname,topk,lw,name,ltype,
     $        setfeval)) return
      endif
      getrhsvar=.true.
      return
      end


      logical function getrhscvar(number,type,it,m,n,lr,lc)
c     ===========================================================
c     get the argument number <<number>> 
c     the argument must be of type type ('d','r','i')
c     like getrhsvar but for complex matrices 
c     ============================================================
      include '../stack.h'
      logical getsmat,getmat,getbmat
      integer topk
      character*1 type
      character fname*(nlgh)
      character name*(nlgh)
      logical getexternal,ltype,getilist
      external setfeval

c     cadr : istk--->cstk
       integer iadr, cadr
c
       iadr(l)=l+l-1
       cadr(l)=l+l+l+l-3
c
      nbvars=max(nbvars,number)
      call cvname(ids(1,pt+1),fname,1)
      getrhscvar=.false.
      lw=number+top-rhs
      if(number.gt.rhs) then
         buf='bad call to getrhscvar! (1rst argument)'
         call error(998)
         return
      endif
      if (number.gt.intersiz) then 
         buf = 'getrhscvar :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      topk=top
      if (type.eq.'d') then
         if(.not.getmat(fname,topk,lw,it,m,n,lr,lc )) return
         ntypes(number)=ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         itflag(number)=it
         lad(number)=lr
         ladc(number)=lc
      elseif(type.eq.'r') then
         if(.not.getmat(fname,topk,lw,it,m,n,lr,lc )) return
         call simple(m*n*(it+1),stk(lr),sstk(iadr(lr)))
         lr=iadr(lr)
         lc=lr+m*n
         ntypes(number)=ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         itflag(number)=it
         lad(number)=lr
         ladc(number)=lc
      elseif(type.eq.'i') then
         if(.not.getmat(fname,topk,lw,it,m,n,lr,lc )) return
         call entier(m*n*(it+1),stk(lr),istk(iadr(lr)))
         lr=iadr(lr)
         lc=lr+m*n
         ntypes(number)=ichar(type)
         nbrows(number)=m
         nbcols(number)=n
         itflag(number)=it
         lad(number)=lr
         ladc(number)=lc
      endif
      getrhscvar=.true.
      return
      end

      logical function getlistrhsvar(lnumber,number,type,m,n,lr,lar)
c     ===========================================================
c     This function must be called after getrhsvar(lnumber,'l',...)
c     Argument lnumber is a list 
c     we want here to get its argument number number
c     the argument must be of type type ('c','d','r','i','b')
c     return values m,n,lr,lar 
c         (lar --> data is coded at stk(lar) 
c          lr  --> data is coded at istk(lr) or stk(lr) or sstk(lr) 
c                  or cstk(lr)
c     c : string  (m-> number of characters and n->1)
c     d,r,i : matrix of double,float or integer 
c     ============================================================
      include '../stack.h'
      logical getlistsimat,getlistmat,getlistbmat
      integer topk
      character*1 type
      character fname*(nlgh)
      character name*(nlgh)
      logical getexternal,ltype
      external setfeval

c     cadr : istk--->cstk
       integer iadr, cadr
c
       iadr(l)=l+l-1
       cadr(l)=l+l+l+l-3
c
      nbvars=max(nbvars,lnumber)
      call cvname(ids(1,pt+1),fname,1)
      getlistrhsvar=.false.
      lw=lnumber+top-rhs
      if(lnumber.gt.rhs) then
         buf='bad call to getlistrhsvar! (1rst argument)'
         call error(998)
         return
      endif
      if (lnumber.gt.intersiz) then 
         buf = 'getlistrhsvar :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      topk=top
      if(type.eq.'c') then
         n=1
         if(.not.getlistsimat(fname,topk,lw,number,m1,n1,1,1,lr,m))
     $        return 
         call in2str(m*n,istk(lr),cstk(cadr(lr):cadr(lr)+m*n))
         lar=lr
         lr=cadr(lr)
      elseif(type.eq.'d') then
         if(.not.getlistmat(fname,topk,lw,number,it,m,n,lr,lc )) return
         lar=lr
      elseif(type.eq.'r') then
         if(.not.getlistmat(fname,topk,lw,number,it,m,n,lr,lc )) return
         call simple(m*n,stk(lr),sstk(iadr(lr)))
         lar=lr
         lr=iadr(lr)
      elseif(type.eq.'i') then
         if(.not.getlistmat(fname,topk,lw,number,it,m,n,lr,lc )) return
         call entier(m*n,stk(lr),istk(iadr(lr)))
         lar = lr 
         lr=iadr(lr)
      elseif(type.eq.'b') then
         if(.not.getlistbmat(fname,topk,lw,number,m,n,lr )) return
         lar = lr 
         lr  = lr
      else 
         buf='getlistrhsvar: bad third argument!'
         call error(998)
         return 
      endif
      getlistrhsvar=.true.
      return
      end

      logical function getlistrhscvar(lnumber,number,type,it,
     $     m,n,lr,lc,lar,lac)
c     ===========================================================
c     for complex 
c     ============================================================
      include '../stack.h'
      logical getlistsimat,getlistmat,getlistbmat
      integer topk
      character*1 type
      character fname*(nlgh)
      character name*(nlgh)
      logical getexternal,ltype
      external setfeval

c     cadr : istk--->cstk
       integer iadr, cadr
c
       iadr(l)=l+l-1
       cadr(l)=l+l+l+l-3
c
      nbvars=max(nbvars,lnumber)
      call cvname(ids(1,pt+1),fname,1)
      getlistrhscvar=.false.
      lw=lnumber+top-rhs
      if(lnumber.gt.rhs) then
         buf='bad call to getlistrhscvar! (1rst argument)'
         call error(998)
         return
      endif
      if (lnumber.gt.intersiz) then 
         buf = 'getlistrhscvar :too many arguments on the stack' //
     $        ' edit stack.h and enlarge intersiz'
         call error(998)
         return
      endif
      topk=top
      if(type.eq.'d') then
         if(.not.getlistmat(fname,topk,lw,number,it,m,n,lr,lc )) return
         lar=lr
         lac=lc
      elseif(type.eq.'r') then
         if(.not.getlistmat(fname,topk,lw,number,it,m,n,lr,lc )) return
         call simple(m*n*(1+it),stk(lr),sstk(iadr(lr)))
         lar=lr
         lr=iadr(lr)
         lac=lc
         lc=lr+m*n
      elseif(type.eq.'i') then
         if(.not.getlistmat(fname,topk,lw,number,it,m,n,lr,lc )) return
         call entier(m*n*(1+it),stk(lr),istk(iadr(lr)))
         lar = lr 
         lr=iadr(lr)
         lac=lc
         lc=lr+m*n
      else 
         buf='getlistrhscvar: bad third argument!'
         call error(998)
         return 
      endif
      getlistrhscvar=.true.
      return
      end


      logical function createvarfromptr(number,type,m,n,iptr)
c     ===========================================================
c     creates variable number number of type "type" and dims m,n
c     from pointer ptr
c     ===========================================================
      logical cremat,cresmat2
      include '../stack.h'
      character*(1) type
      character fname*(nlgh)
      createvarfromptr=.false.
      fname = 'createvarfromptr'
      nbvars=max(nbvars,number)
      if (number.gt.intersiz) then 
         buf = 'createvarfromptr :too many arguments '//
     $        'on the stack, enlarge intersiz (stack.h) '
         call error(998)
         return
      endif
      lw1=number+top-rhs
      if(type.eq.'d') then
         if(.not.cremat(fname,lw1,0,m,n,lrs,lcs)) return
         call cdouble(m*n,iptr,stk(lrs))   
      elseif(type.eq.'i') then
         if(.not.cremat(fname,lw1,0,m,n,lrs,lcs)) return
         call cint(m*n,iptr,stk(lrs))
      elseif(type.eq.'c') then
         if(.not.cresmat2(fname,lw1,m*n,lrs)) return
         call cchar(m*n,iptr,istk(lrs))
      else
         buf='getlistrhsvar: bad second argument!'
         call error(998)
         return 
      endif
c     this object will be copied with a vcopyobj in putlhsvar
      ntypes(number)=ichar('$')
      createvarfromptr=.true.
      return
      end

      logical function createcvarfromptr(number,type,it,m,n,
     $     iptr,iptc)
c     ===========================================================
c     for complex 
c     ===========================================================
      logical cremat,cresmat2
      include '../stack.h'
      character*(1) type
      character fname*(nlgh)
      createcvarfromptr=.false.
      fname = 'createcvarfromptr'
      nbvars=max(nbvars,number)
      if (number.gt.intersiz) then 
         buf = 'createcvarfromptr :too many arguments '//
     $        'on the stack, enlarge intersiz (stack.h) '
         call error(998)
         return
      endif
      lw1=number+top-rhs
      if(type.eq.'d') then
         if(.not.cremat(fname,lw1,it,m,n,lrs,lcs)) return
         call cdouble(m*n,iptr,stk(lrs))   
         if (it.eq.1) call cdouble(m*n,iptc,stk(lcs))   
      elseif(type.eq.'i') then
         if(.not.cremat(fname,lw1,it,m,n,lrs,lcs)) return
         call cint(m*n,iptr,stk(lrs))
         if (it.eq.1) call cint(m*n,iptc,stk(lcs))
      else
         buf='getlistrhsvar: bad second argument!'
         call error(998)
         return 
      endif
c     this object will be copied with a vcopyobj in putlhsvar
      ntypes(number)=ichar('$')
      createcvarfromptr=.true.
      return
      end


      subroutine in2str(n,line,str)
c     ===========================================================
c     int to string (cvstr)
c     line and str can point to the same zone
c     the conversion is done on place 
c     and str is null terminated 
c     used by getrhsvar
c     =======================================
      include '../stack.h'
      integer eol,line(*)
      character str*(*),mc*1
      data eol/99/
c     conversion code ->ascii
      do 30 j=1,n
         m=line(j)
         if(abs(m).gt.csiz) m=99
         if(m.eq.99) goto 10
         if(m.lt.0) then
            str(j:j)=alfb(abs(m)+1)
         else
            str(j:j)=alfa(m+1)
         endif
         goto 30
 10      str(j:j)='!'
 30   continue
      j=n+1
      str(j:j)=char(0)
      return
      end


      subroutine callscifun(string)
      INCLUDE '../stack.h'
      integer id(nsiz)
      character*(*) string
      l=len(string)
      call cvname(id,string(1:l),0)
      call putid(ids(1,pt+1),id)
      fun=-1
      return
      end





      logical function scifunction(number,ptr,mlhs,mrhs)
c     ===========================================================
c     execute scilab function with mrhs input args and mlhs output
c     variables
c     input args are supposed to be stored in the top of the stack
c     at positions top-mrhs+1:top
c     ===========================================================
      include "../stack.h"
      integer ptr
      integer mlhs,mrhs
      integer iadr,sadr

      common/ierfeval/iero
      iadr(l) = l + l - 1
      sadr(l) = (l/2) + 1
      cadr(l)=l+l+l+l-3
c   

C     macro execution 
C
      scifunction=.false.
      intop=top
      top=top-rhs+number+mrhs-1
      pt = pt + 1
      if (pt .gt. psiz) then
        call error(26)
        goto 9999
      endif
      ids(1,pt) = lhs
      ids(2,pt) = rhs
      rstk(pt) = 1001
      lhs = mlhs
      rhs = mrhs
      niv = niv + 1
      fun = 0
      fin = ptr
C     
      icall = 5
      krec = -1
      include "../callinter.h"
 200  lhs = ids(1,pt)
      rhs = ids(2,pt)
      pt = pt - 1
      niv = niv - 1
C+
      top=intop
      do 1333 i=1,mlhs
         lw=top-rhs+number+i-1
         ntypes(lw)=ichar('$')
 1333 continue
      scifunction=.true.
      return
 9999 continue
      top=intop
      scifunction=.false.
      niv=niv-1
      iero=1
      return
      end

      logical function getrhssys(lw,N,M,P,ptrA,ptrB,ptrC,ptrD,ptrX0,h)
c     test and return linear system (syslin tlist)
c     inputs: lw = variable number
c     outputs:
c     N=size of A matrix (square)                    INTEGER
c     M=number of inputs = col. dim B matrix         INTEGER
c     P=number of outputs = row. dim of C matrix     INTEGER   
c     ptr(A,B,C,D,X0) adresses of A,B,C,D,X0 in stk  INTEGERS
c     h=type   h=0.0  continuous system              DOUBLE PRECISION
c              h=1.0  discrete time system
c              h=h    sampled system h=sampling period
c 
      INCLUDE '../stack.h'
      logical getrhsvar,getlistrhsvar
      integer ptrSys,ptrA,ptrB,ptrC,ptrD,ptrX0,ptrlss
      integer M,N,P,junk
      double precision h
      integer iadr,sadr
      dimension iwork(23)
      data iwork/10,1,7,0,1,4,5,6,7,8,10,12,21,28,28,-10,-11,
     $          -12,-13,-33,0,13,29/
c     iwork=stringmat,nrows,ncols,0,1,4,5,6,7,8,10,12,...
c     'lssABCDX0dt' (=21,28,28,-10,-11,-12,-13,-33,0,13,29)

c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
c
      getrhssys=.false.
      if(.not.getrhsvar(lw,'l',mSys,nSys,ptrSys)) return
      il=iadr(ptrsys)-mSys-1
c     syslin tlist= chain, (A,B,C,D,X0) ,chain or scalar
c                    10     1 1 1 1 1      10       1
      junk=(il+mSYS) +IADR(istk(il))
      if(istk( junk ).ne.10) return
      if(istk( (il+mSYS) +IADR(istk(il+1))).ne.1) return
      if(istk( (il+mSYS) +IADR(istk(il+2))).ne.1) return
      if(istk( (il+mSYS) +IADR(istk(il+3))).ne.1) return
      if(istk( (il+mSYS) +IADR(istk(il+4))).ne.1) return
      if(istk( (il+mSYS) +IADR(istk(il+5))).ne.1) return
      itimedomain=istk( (il+mSYS) +IADR(istk(il+6)))
c
      if (itimedomain.eq.10) then
c     Sys(7)='c' or 'd'
         icord=istk( (il+mSYS) +IADR(istk(il+6)) +6)
         if(icord.eq.12) then
            h=0.0d0
            elseif(icord.eq.13) then
            h=1.0d0
            else
            buf='invalid time domain'
            call error(9999)
            return
            endif
      elseif(itimedomain.eq.1) then
c     Sys(7)=h
         h=stk(sadr( (il+mSYS) +IADR(istk(il+6)) +4))
      else
         buf='invalid time domain'
         call error(9999)
         return
      endif

      do 23 i=1,23
         if(iwork(i).ne.istk(junk+i-1)) goto 33
 23   continue
      goto 34
 33   buf=' '
      buf='invalid system'
      call error(9999)
      return
 34   continue

      if(.not.getlistrhsvar(lw,2,'d',mA,nA,ptrA,junk)) return
      if(.not.getlistrhsvar(lw,3,'d',mB,nB,ptrB,junk)) return
      if(.not.getlistrhsvar(lw,4,'d',mC,nC,ptrC,junk)) return
      if(.not.getlistrhsvar(lw,5,'d',mD,nD,ptrD,junk)) return
      if(.not.getlistrhsvar(lw,6,'d',mX0,nX0,ptrX0,junk)) return

      if((mA.ne.nA)) then
         call erro('A matrix non square!')
         return
      endif

      if((mA.ne.mB).and.(mb.ne.0)) then
         call erro('Invalid A,B matrices')
         return
      endif

      if((mA.ne.nC.and.(nc.ne.0))) then
         call erro('Invalid A,C matrices')
         return
      endif

      if((mC.ne.mD.and.(mD.ne.0))) then
         call erro('Invalid C,D matrices')
         return
      endif

      if((nB.ne.nD.and.(nD.ne.0))) then
         call erro('Invalid B;D matrices')
         return
      endif

      N=mA
      M=nB
      P=mC
      getrhssys=.true.
      end


      subroutine errorinfo(fname,info)
c     Returns info number in routine fname.
      INCLUDE '../stack.h'
      character*(nlgh) fname
      buf=fname//': internal error, info='
      write(buf(50:53),'(i4)') info
      call error(998)
      end



      integer function maxvol(lw,type)
c     returns maximal available size for variable number lw
c     in internal stack. type='d','r','i','c'
c     used for creating a working array of maximal dimension
c     usage:
c     lwork=maxvol(nb,'d')
c     if(.not.createvar(nb,'d',lwork,1,idwork)) return
c     call pipo(   ,stk(idwork),[lwork],...)
      include '../stack.h'
      character*1 type
      integer lw
      integer iadr,sadr,cadr
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
      cadr(l)=l+l+l+l-3
c
      lw1=lw+top-rhs

      il=iadr(lstk(lw1))
      m= lstk(bot) - sadr(il+4)

      if(type.eq.'d') then
         maxvol=m
      elseif(type.eq.'i') then
         maxvol=iadr(m)
      elseif(type.eq.'r') then
         maxvol=iadr(m)
      elseif(type.eq.'c') then
         maxvol=cadr(m)
      endif

      end