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