dgl.prop_edges
- dgl.prop_edges(graph, edges_generator, message_func='default', reduce_func='default', apply_node_func='default')[source]
Functional method for
dgl.DGLGraph.prop_edges()
.- Parameters:
edges_generator (generator) – The generator of edge frontiers.
message_func (callable, optional) – The message function.
reduce_func (callable, optional) – The reduce function.
apply_node_func (callable, optional) – The update function.
See also