File: slsqp.pyf

package info (click to toggle)
python-scipy 0.18.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 75,464 kB
  • ctags: 79,406
  • sloc: python: 143,495; cpp: 89,357; fortran: 81,650; ansic: 79,778; makefile: 364; sh: 265
file content (30 lines) | stat: -rw-r--r-- 1,360 bytes parent folder | download | duplicates (6)
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
!    -*- f90 -*-
! Note: the context of this file is case sensitive.

python module _slsqp ! in 
    interface  ! in :slsqp
        subroutine slsqp(m,meq,la,n,x,xl,xu,f,c,g,a,acc,iter,mode,w,l_w,jw,l_jw) ! in :slsqp:slsqp_optmz.f
            integer :: m
            integer :: meq
            integer optional,check(len(c)>=la),depend(c) :: la=len(c)
            integer optional,check(len(x)>=n),depend(x) :: n=len(x)
            double precision dimension(n), intent(inout) :: x
            double precision dimension(n),depend(n) :: xl
            double precision dimension(n),depend(n) :: xu
            double precision :: f
            double precision dimension(la) :: c
            double precision dimension(n + 1),depend(n) :: g
            double precision dimension(la,n + 1),depend(la,n) :: a
            double precision, intent(inout) :: acc
            integer, intent(inout) :: iter
            integer, intent(inout) :: mode
            double precision dimension(l_w) :: w
            integer optional,check(len(w)>=l_w),depend(w) :: l_w=len(w)
            integer dimension(l_jw) :: jw
            integer optional,check(len(jw)>=l_jw),depend(jw) :: l_jw=len(jw)
        end subroutine slsqp
    end interface 
end python module slsqp

! This file was auto-generated with f2py (version:2_3844).
! See http://cens.ioc.ee/projects/f2py2e/