#!/usr/bin/env python3# -*- coding: utf-8 -*-## This file is referred and derived from project NetworkX## which has the following license:## Copyright (C) 2004-2020, NetworkX Developers# Aric Hagberg <hagberg@lanl.gov># Dan Schult <dschult@colgate.edu># Pieter Swart <swart@lanl.gov># All rights reserved.## This file is part of NetworkX.## NetworkX is distributed under a BSD license; see LICENSE.txt for more# information.#importnetworkxasnxafromgraphscopeimportnxfromgraphscope.framework.errorsimportUnimplementedErrorfromgraphscope.nximportNetworkXErrorfromgraphscope.nx.generators.classicimportcomplete_graphfromgraphscope.nx.generators.classicimportcycle_graphfromgraphscope.nx.generators.classicimportempty_graphfromgraphscope.nx.generators.classicimportpath_graphfromgraphscope.nx.utils.compatimportpatch_docstring__all__=["make_small_graph","LCF_graph","bull_graph","chvatal_graph","cubical_graph","desargues_graph","diamond_graph","dodecahedral_graph","frucht_graph","heawood_graph","house_graph","house_x_graph","icosahedral_graph","krackhardt_kite_graph","moebius_kantor_graph","octahedral_graph","pappus_graph","petersen_graph","sedgewick_maze_graph","tetrahedral_graph","truncated_cube_graph","truncated_tetrahedron_graph","tutte_graph",]defmake_small_undirected_graph(graph_description,create_using=None):""" Return a small undirected graph described by graph_description. See make_small_graph. """G=empty_graph(0,create_using)ifG.is_directed():raiseNetworkXError("Directed Graph not supported")returnmake_small_graph(graph_description,G)
[docs]@patch_docstring(nxa.make_small_graph)defmake_small_graph(graph_description,create_using=None):ifgraph_description[0]notin("adjacencylist","edgelist"):raiseNetworkXError("ltype must be either adjacencylist or edgelist")ltype=graph_description[0]name=graph_description[1]n=graph_description[2]G=empty_graph(n,create_using)nodes=G.nodes()ifltype=="adjacencylist":adjlist=graph_description[3]iflen(adjlist)!=n:raiseNetworkXError("invalid graph_description")G.add_edges_from([(u-1,v)forvinnodesforuinadjlist[v]])elifltype=="edgelist":edgelist=graph_description[3]foreinedgelist:v1=e[0]-1v2=e[1]-1ifv1<0orv1>n-1orv2<0orv2>n-1:raiseNetworkXError("invalid graph_description")G.add_edge(v1,v2)G.name=namereturnG
[docs]@patch_docstring(nxa.LCF_graph)defLCF_graph(n,shift_list,repeats,create_using=None):ifn<=0:returnempty_graph(0,create_using)# start with the n-cycleG=cycle_graph(n,create_using)ifG.is_directed():raiseNetworkXError("Directed Graph not supported")G.name="LCF_graph"nodes=sorted(list(G))n_extra_edges=repeats*len(shift_list)# edges are added n_extra_edges times# (not all of these need be new)ifn_extra_edges<1:returnGforiinrange(n_extra_edges):shift=shift_list[i%len(shift_list)]# cycle through shift_listv1=nodes[i%n]# cycle repeatedly through nodesv2=nodes[(i+shift)%n]G.add_edge(v1,v2)returnG
# -------------------------------------------------------------------------------# Various small and named graphs# -------------------------------------------------------------------------------
[docs]@patch_docstring(nxa.krackhardt_kite_graph)defkrackhardt_kite_graph(create_using=None):description=["adjacencylist","Krackhardt Kite Social Network",10,[[2,3,4,6],[1,4,5,7],[1,4,6],[1,2,3,5,6,7],[2,4,7],[1,3,4,7,8],[2,4,5,6,8],[6,7,9],[8,10],[9],],]G=make_small_undirected_graph(description,create_using)returnG