(rout)
| 340 | |
| 341 | |
| 342 | def islong_doublefunction(rout): |
| 343 | if not isfunction(rout): |
| 344 | return 0 |
| 345 | if 'result' in rout: |
| 346 | a = rout['result'] |
| 347 | else: |
| 348 | a = rout['name'] |
| 349 | if a in rout['vars']: |
| 350 | return islong_double(rout['vars'][a]) |
| 351 | return 0 |
| 352 | |
| 353 | |
| 354 | def iscomplexfunction(rout): |
nothing calls this directly
no test coverage detected
searching dependent graphs…