MCPcopy Index your code
hub / github.com/numpy/numpy / compute_deps

Function compute_deps

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

Source from the content-addressed store, hash-verified

2788 # specifications.
2789 for v, (solver, deps) in coeffs_and_deps.items():
2790 def compute_deps(v, deps):
2791 for v1 in coeffs_and_deps.get(v, [None, []])[1]:
2792 if v1 not in deps:
2793 deps.add(v1)
2794 compute_deps(v1, deps)
2795 all_deps = set()
2796 compute_deps(v, all_deps)
2797 if (v in n_deps

Callers 1

analyzevarsFunction · 0.85

Calls 2

getMethod · 0.45
addMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…