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
|
__usage__ = """
Run:
python return_logical.py [<f2py options>]
Examples:
python return_logical.py --fcompiler=Gnu --no-wrap-functions
python return_logical.py --quiet
"""
import f2py2e
from Numeric import array
try: True
except NameError:
True = 1
False = 0
def build(f2py_opts):
try:
import f77_ext_return_logical
except ImportError:
assert not f2py2e.compile('''\
function t0(value)
logical value
logical t0
t0 = value
end
function t1(value)
logical*1 value
logical*1 t1
t1 = value
end
function t2(value)
logical*2 value
logical*2 t2
t2 = value
end
function t4(value)
logical*4 value
logical*4 t4
t4 = value
end
c function t8(value)
c logical*8 value
c logical*8 t8
c t8 = value
c end
subroutine s0(t0,value)
logical value
logical t0
cf2py intent(out) t0
t0 = value
end
subroutine s1(t1,value)
logical*1 value
logical*1 t1
cf2py intent(out) t1
t1 = value
end
subroutine s2(t2,value)
logical*2 value
logical*2 t2
cf2py intent(out) t2
t2 = value
end
subroutine s4(t4,value)
logical*4 value
logical*4 t4
cf2py intent(out) t4
t4 = value
end
c subroutine s8(t8,value)
c logical*8 value
c logical*8 t8
cf2py intent(out) t8
c t8 = value
c end
''','f77_ext_return_logical',f2py_opts)
#from f77_ext_return_logical import t0,t1,t2,t4,t8,s0,s1,s2,s4,s8
#test_functions = [t0,t1,t2,t4,t8,s0,s1,s2,s4,s8]
from f77_ext_return_logical import t0,t1,t2,t4,s0,s1,s2,s4
test_functions = [t0,t1,t2,t4,s0,s1,s2,s4]
return test_functions
def runtest(t):
assert t(True)==1,`t(True)`
assert t(False)==0,`t(False)`
assert t(0)==0
assert t(None)==0
assert t(0.0)==0
assert t(0j)==0
assert t(1j)==1
assert t(234)==1
assert t(234.6)==1
assert t(234l)==1
assert t(234.6+3j)==1
assert t('234')==1
assert t('aaa')==1
assert t('')==0
assert t([])==0
assert t(())==0
assert t({})==0
assert t(t)==1
assert t(-234)==1
assert t(10l**100)==1
assert t([234])==1
assert t((234,))==1
assert t(array(234))==1
assert t(array([234]))==1
assert t(array([[234]]))==1
assert t(array([234],'1'))==1
assert t(array([234],'s'))==1
assert t(array([234],'i'))==1
assert t(array([234],'l'))==1
assert t(array([234],'b'))==1
assert t(array([234],'f'))==1
assert t(array([234],'d'))==1
assert t(array([234+3j],'F'))==1
assert t(array([234],'D'))==1
assert t(array(0))==0
assert t(array([0]))==0
assert t(array([[0]]))==0
assert t(array([0j]))==0
assert t(array([1]))==1
assert t(array([0,0]))==0
assert t(array([0,1]))==1 #XXX: is this expected?
if __name__=='__main__':
#import libwadpy
repeat,f2py_opts = f2py2e.f2py_testing.cmdline()
test_functions = build(f2py_opts)
f2py2e.f2py_testing.run(runtest,test_functions,repeat)
print 'ok'
|