MCPcopy Create free account
hub / github.com/numpy/numpy / UnknownFortranRoutine

Class UnknownFortranRoutine

numpy/linalg/lapack_lite/make_lite.py:91–100  ·  view source on GitHub ↗

Wrapper for a Fortran routine for which the corresponding file is not known.

Source from the content-addressed store, hash-verified

89 self.filename)
90
91class UnknownFortranRoutine(FortranRoutine):
92 """Wrapper for a Fortran routine for which the corresponding file
93 is not known.
94 """
95 type = 'unknown'
96 def __init__(self, name):
97 FortranRoutine.__init__(self, name=name, filename='<unknown>')
98
99 def dependencies(self):
100 return []
101
102class FortranLibrary:
103 """Container for a bunch of Fortran routines.

Callers 2

_findRoutineMethod · 0.85
addIgnorableRoutineMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected