File: cobyla.pyf

package info (click to toggle)
python-scipy 0.6.0-12
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 32,016 kB
  • ctags: 46,675
  • sloc: cpp: 124,854; ansic: 110,614; python: 108,664; fortran: 76,260; objc: 424; makefile: 384; sh: 10
file content (33 lines) | stat: -rw-r--r-- 1,433 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
31
32
33
!    -*- f90 -*-
python module _cobyla__user__routines 
    interface _cobyla_user_interface 
        subroutine calcfc(n,m,x,f,con)
            integer intent(in,hide) :: n
            integer intent(in,hide) :: m
            double precision dimension(n),depend(n),intent(in) :: x
            double precision intent(out) :: f
            double precision intent(in), dimension(m), depend(m) :: con
        end subroutine calcfc
    end interface _cobyla_user_interface
end python module _cobyla__user__routines
python module _cobyla ! in 
    interface  ! in :__cobyla
        subroutine minimize(calcfc,n,m,x,rhobeg,rhoend,iprint,maxfun,w,iact)
            fortranname cobyla
            use _cobyla__user__routines
            external calcfc
            integer intent(hide),depend(x) :: n=len(x)
            integer :: m
            double precision dimension(n),intent(in,out) :: x
            double precision :: rhobeg
            double precision :: rhoend
            integer optional,check(0<=iprint && iprint<=3) :: iprint=1
            integer :: maxfun = 100
            double precision dimension(n*(3*n+2*m+11)+4*m+6), intent(cache,hide),depend(n,m) :: w
            integer dimension(m + 1),intent(cache,hide),depend(m) :: iact
        end subroutine minimize
    end interface 
end python module _cobyla

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