(rout)
| 343 | |
| 344 | |
| 345 | def 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 | |
| 357 | def iscomplexfunction(rout): |
nothing calls this directly
no test coverage detected