(rout)
| 328 | |
| 329 | |
| 330 | def islong_longfunction(rout): |
| 331 | if not isfunction(rout): |
| 332 | return 0 |
| 333 | if 'result' in rout: |
| 334 | a = rout['result'] |
| 335 | else: |
| 336 | a = rout['name'] |
| 337 | if a in rout['vars']: |
| 338 | return islong_long(rout['vars'][a]) |
| 339 | return 0 |
| 340 | |
| 341 | |
| 342 | def islong_doublefunction(rout): |
nothing calls this directly
no test coverage detected
searching dependent graphs…