Wrapper for a Fortran routine for which the corresponding file is not known.
| 89 | return f"FortranRoutine({self.name!r}, filename={self.filename!r})" |
| 90 | |
| 91 | class UnknownFortranRoutine(FortranRoutine): |
| 92 | """Wrapper for a Fortran routine for which the corresponding file |
| 93 | is not known. |
| 94 | """ |
| 95 | type = 'unknown' |
| 96 | |
| 97 | def __init__(self, name): |
| 98 | FortranRoutine.__init__(self, name=name, filename='<unknown>') |
| 99 | |
| 100 | def dependencies(self): |
| 101 | return [] |
| 102 | |
| 103 | class FortranLibrary: |
| 104 | """Container for a bunch of Fortran routines. |
no outgoing calls
no test coverage detected
searching dependent graphs…