_dispatchable#
- _dispatchable(func=None, *, name=None, graphs='G', edge_attrs=None, node_attrs=None, preserve_edge_attrs=False, preserve_node_attrs=False, preserve_graph_attrs=False, preserve_all_attrs=False, mutates_input=False, returns_graph=False, implemented_by_nx=True)[source]#
A decorator function that is used to redirect the execution of
funcfunction to its backend implementation.This decorator allows the function to dispatch to different backend implementations based on the input graph types, and also manages the extra keywords
backendand**backend_kwargs. Usage can be any of the following decorator forms:@_dispatchable@_dispatchable()@_dispatchable(name="override_name")@_dispatchable(graphs="graph_var_name")@_dispatchable(edge_attrs="weight")@_dispatchable(graphs={"G": 0, "H": 1}, edge_attrs={"weight": "default"})with 0 and 1 giving the position in the signature function for graph objects. When
edge_attrsis a dict, keys are keyword names and values are defaults.
- Parameters:
- funccallable, optional (default: None)
The function to be decorated. If None,
_dispatchablereturns a partial object that can be used to decorate a function later. Iffuncis a callable, returns a new callable object that dispatches to a backend function based on input graph types.- namestr, optional (default: name of
func) The name for the function as used for dispatching. If not provided, the name of
funcwill be used.nameis useful to avoid name conflicts, as all dispatched functions live in a single namespace. For example,nx.tournament.is_strongly_connectedhad a name conflict with the standardnx.is_strongly_connected, so we used@_dispatchable(name="tournament_is_strongly_connected").- graphsstr or dict or None, optional (default: “G”)
If a string, the parameter name of the graph, which must be the first argument of the wrapped function. If more than one graph is required for the function (or if the graph is not the first argument), provide a dict keyed by graph parameter name to the value parameter position. A question mark in the name indicates an optional argument. For example,
@_dispatchable(graphs={"G": 0, "auxiliary?": 4})indicates the 0th parameterGof the function is a required graph, and the 4th parameterauxiliary?is an optional graph. To indicate that an argument is a list of graphs, do"[graphs]". Usegraphs=None, if no arguments are NetworkX graphs such as for graph generators, readers, and conversion functions.- edge_attrsstr or dict, optional (default: None)
edge_attrsholds information about edge attribute arguments and default values for those edge attributes. If a string,edge_attrsholds the function argument name that indicates a single edge attribute to include in the converted graph. The default value for this attribute is 1. To indicate that an argument is a list of attributes (all with default value 1), use e.g."[attrs]". If a dict,edge_attrsholds a dict keyed by argument names, with values that are either the default value or, if a string, the argument name that indicates the default value. If None, function does not use edge attributes.- node_attrsstr or dict, optional
Like
edge_attrs, but for node attributes.- preserve_edge_attrsbool or str or dict, optional (default: False)
If bool, whether to preserve all edge attributes. If a string, the parameter name that may indicate (with
Trueor a callable argument) whether all edge attributes should be preserved when converting graphs to a backend graph type. If a dict of form{graph_name: {attr: default}}, indicate pre-determined edge attributes (and defaults) to preserve for the indicated input graph.- preserve_node_attrsbool or str or dict, optional (default: False)
Like
preserve_edge_attrs, but for node attributes.- preserve_graph_attrsbool or set, optional (default: False)
If bool, whether to preserve all graph attributes. If set, which input graph arguments to preserve graph attributes.
- preserve_all_attrsbool, optional (default: False)
Whether to preserve all edge, node and graph attributes. If True, this overrides all the other preserve_*_attrs.
- mutates_inputbool or dict, optional (default: False)
If bool, whether the function mutates an input graph argument. If dict of
{arg_name: arg_pos}, name and position of bool arguments that indicate whether an input graph will be mutated, andarg_namemay begin with"not "to negate the logic (for example,"not copy"means we mutate the input graph when thecopyargument is False). By default, dispatching doesn’t convert input graphs to a different backend for functions that mutate input graphs.- returns_graphbool, optional (default: False)
Whether the function can return or yield a graph object. By default, dispatching doesn’t convert input graphs to a different backend for functions that return graphs.
- implemented_by_nxbool, optional (default: True)
Whether the function is implemented by NetworkX. If it is not, then the function is included in NetworkX only as an API to dispatch to backends. Default is True.