(rout)
| 352 | |
| 353 | |
| 354 | def iscomplexfunction(rout): |
| 355 | if not isfunction(rout): |
| 356 | return 0 |
| 357 | if 'result' in rout: |
| 358 | a = rout['result'] |
| 359 | else: |
| 360 | a = rout['name'] |
| 361 | if a in rout['vars']: |
| 362 | return iscomplex(rout['vars'][a]) |
| 363 | return 0 |
| 364 | |
| 365 | |
| 366 | def iscomplexfunction_warn(rout): |
no test coverage detected
searching dependent graphs…