(rout)
| 300 | |
| 301 | |
| 302 | def hasassumedshape(rout): |
| 303 | if rout.get('hasassumedshape'): |
| 304 | return True |
| 305 | for a in rout['args']: |
| 306 | for d in rout['vars'].get(a, {}).get('dimension', []): |
| 307 | if d == ':': |
| 308 | rout['hasassumedshape'] = True |
| 309 | return True |
| 310 | return False |
| 311 | |
| 312 | |
| 313 | def requiresf90wrapper(rout): |
no test coverage detected