File: ref2val.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 (50 lines) | stat: -rw-r--r-- 996 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
      subroutine ref2val
c     Copyright INRIA
      INCLUDE '../stack.h'
      integer vol,topk
      logical ref
      integer iadr,sadr
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
c

      if(rhs.le.0) return

      vol=0
      ref=.false.
      topk=top+1-rhs
      do 10 i=0,rhs-1
         k=topk
         il=iadr(lstk(topk))
         if(istk(il).lt.0) then
            ref=.true.
            k=istk(il+2)
         endif
         vol=vol+lstk(k+1)-lstk(k)
         topk=topk+1
 10   continue
      if(.not.ref) return
c
      le=lstk(top+1-rhs)+vol
      err=le-lstk(bot)
      if(err.gt.0) then
         call error(17)
         return
      endif
      topk=top
      do 20 i=0,rhs-1
         k=topk
         il=iadr(lstk(topk))
         if(istk(il).lt.0) k=istk(il+2)
         vol=lstk(k+1)-lstk(k)
         lstk(topk+1)=le
         lk=lstk(k)
         le=le-vol
         if(lk.ne.le) call dcopy(vol,stk(lk),-1,stk(le),-1)
         topk=topk-1
 20   continue
      return
      end