MCPcopy Index your code
hub / github.com/ciphermodelabs/ciphercore / get_node_dependencies

Method get_node_dependencies

ciphercore-base/src/graphs.rs:438–445  ·  view source on GitHub ↗

Returns the dependency nodes that are used to compute the value in the current node. # Returns Vector of nodes used by the node to perform its operation

(&self)

Source from the content-addressed store, hash-verified

436 ///
437 /// Vector of nodes used by the node to perform its operation
438 pub fn get_node_dependencies(&self) -> Vec<Node> {
439 self.body
440 .borrow()
441 .node_dependencies
442 .iter()
443 .map(|n| n.upgrade())
444 .collect()
445 }
446
447 /// Returns the dependency graphs that are used to compute the value in the current node.
448 ///

Callers 15

process_nodeMethod · 0.80
evaluate_graphMethod · 0.80
create_from_nodeMethod · 0.80
run_instantiation_passFunction · 0.80
make_serializableMethod · 0.80
test_graph_consistencyFunction · 0.80
sanity_passMethod · 0.80
check_equivalence_classFunction · 0.80

Calls 1

upgradeMethod · 0.80

Tested by 7

test_graph_consistencyFunction · 0.64
resolve_tuple_getFunction · 0.64
calculate_network_roundsFunction · 0.64
calculate_ram_statsFunction · 0.64