(rout)
| 291 | |
| 292 | |
| 293 | def islogicalfunction(rout): |
| 294 | if not isfunction(rout): |
| 295 | return 0 |
| 296 | if 'result' in rout: |
| 297 | a = rout['result'] |
| 298 | else: |
| 299 | a = rout['name'] |
| 300 | if a in rout['vars']: |
| 301 | return islogical(rout['vars'][a]) |
| 302 | return 0 |
| 303 | |
| 304 | |
| 305 | def islong_longfunction(rout): |
no test coverage detected