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

Function compute_deps

numpy/f2py/crackfortran.py:2824–2828  ·  view source on GitHub ↗
(v, deps)

Source from the content-addressed store, hash-verified

2822 # specifications.
2823 for v, (solver, deps) in coeffs_and_deps.items():
2824 def compute_deps(v, deps):
2825 for v1 in coeffs_and_deps.get(v, [None, []])[1]:
2826 if v1 not in deps:
2827 deps.add(v1)
2828 compute_deps(v1, deps)
2829 all_deps = set()
2830 compute_deps(v, all_deps)
2831 if ((v in n_deps

Callers 1

analyzevarsFunction · 0.85

Calls 2

getMethod · 0.45
addMethod · 0.45

Tested by

no test coverage detected