(rout)
| 319 | |
| 320 | |
| 321 | def islogicalfunction(rout): |
| 322 | if not isfunction(rout): |
| 323 | return 0 |
| 324 | if 'result' in rout: |
| 325 | a = rout['result'] |
| 326 | else: |
| 327 | a = rout['name'] |
| 328 | if a in rout['vars']: |
| 329 | return islogical(rout['vars'][a]) |
| 330 | return 0 |
| 331 | |
| 332 | |
| 333 | def islong_longfunction(rout): |
no test coverage detected