MCPcopy Create free account
hub / github.com/numpy/numpy / islong_doublefunction

Function islong_doublefunction

numpy/f2py/auxfuncs.py:345–354  ·  view source on GitHub ↗
(rout)

Source from the content-addressed store, hash-verified

343
344
345def islong_doublefunction(rout):
346 if not isfunction(rout):
347 return 0
348 if 'result' in rout:
349 a = rout['result']
350 else:
351 a = rout['name']
352 if a in rout['vars']:
353 return islong_double(rout['vars'][a])
354 return 0
355
356
357def iscomplexfunction(rout):

Callers

nothing calls this directly

Calls 2

islong_doubleFunction · 0.85
isfunctionFunction · 0.70

Tested by

no test coverage detected