Home
last modified time | relevance | path

Searched refs:all_neighbors (Results 1 – 25 of 29) sorted by relevance

12

/dports/math/py-networkx/networkx-2.6.3/networkx/algorithms/
H A Dstructuralholes.py46 scale = norm(mutual_weight(G, u, w, weight) for w in set(nx.all_neighbors(G, u)))
134 for w in set(nx.all_neighbors(G, u))
157 redundancy(G, v, u, weight) for u in set(nx.all_neighbors(G, v))
217 local_constraint(G, v, n, weight) for n in set(nx.all_neighbors(G, v))
276 for w in set(nx.all_neighbors(G, u))
H A Dcore.py103 nbrs = {v: list(nx.all_neighbors(G, v)) for v in G}
498 neighbors = {v: list(nx.all_neighbors(G, v)) for v in G}
/dports/math/py-yt/yt-4.0.1/yt/utilities/lib/cykdtree/
H A Dc_kdtree.hpp50 std::vector<uint32_t> all_neighbors; member in Node
305 for (i = 0; i < all_neighbors.size(); i++) in update_ids()
306 all_neighbors[i] += add_to; in update_ids()
397 all_neighbors = left_neighbors[0]; in join_neighbors()
399 all_neighbors.insert(all_neighbors.end(), left_neighbors[d].begin(), left_neighbors[d].end()); in join_neighbors()
401all_neighbors.insert(all_neighbors.end(), right_neighbors[d].begin(), right_neighbors[d].end()); in join_neighbors()
404 std::sort(all_neighbors.begin(), all_neighbors.end()); in join_neighbors()
405 last = std::unique(all_neighbors.begin(), all_neighbors.end()); in join_neighbors()
406 all_neighbors.erase(last, all_neighbors.end()); in join_neighbors()
960 neighbors = leaf->all_neighbors; in get_neighbor_ids()
H A Dkdtree.pxd55 vector[uint32_t] all_neighbors
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/module_utils/network/vyos/facts/legacy/
H A Dbase.py113 all_neighbors = self.responses[0]
114 if 'LLDP not configured' not in all_neighbors:
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/vyos/vyos/plugins/module_utils/network/vyos/facts/legacy/
H A Dbase.py118 all_neighbors = self.responses[0]
119 if "LLDP not configured" not in all_neighbors:
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/support/network-integration/collections/ansible_collections/vyos/vyos/plugins/module_utils/network/vyos/facts/legacy/
H A Dbase.py118 all_neighbors = self.responses[0]
119 if "LLDP not configured" not in all_neighbors:
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/support/network-integration/collections/ansible_collections/vyos/vyos/plugins/module_utils/network/vyos/facts/legacy/
H A Dbase.py118 all_neighbors = self.responses[0]
119 if "LLDP not configured" not in all_neighbors:
/dports/math/py-networkx/networkx-2.6.3/networkx/algorithms/approximation/
H A Dramsey.py41 nbrs = (nbr for nbr in nx.all_neighbors(G, node) if nbr != node)
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/network/edgeos/
H A Dedgeos_facts.py189 all_neighbors = self.responses[0]
190 if 'LLDP not configured' not in all_neighbors:
/dports/math/py-networkx/networkx-2.6.3/doc/reference/
H A Dfunctions.rst40 all_neighbors
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/network/plugins/modules/
H A Dedgeos_facts.py183 all_neighbors = self.responses[0]
184 if 'LLDP not configured' not in all_neighbors:
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/network/plugins/modules/network/edgeos/
H A Dedgeos_facts.py183 all_neighbors = self.responses[0]
184 if 'LLDP not configured' not in all_neighbors:
/dports/math/py-networkx/networkx-2.6.3/networkx/generators/
H A Dduplication.py78 for neighbor_node in list(nx.all_neighbors(G, src_node)):
/dports/math/py-networkx/networkx-2.6.3/networkx/algorithms/tests/
H A Dtest_summarization.py72 all_neighbors = set(nx.all_neighbors(G, compressor_node))
76 in_neighbors = all_neighbors - out_neighbors
/dports/math/p5-Graph/Graph-0.9725/t/
H A D84_all_cessors.t88 all_neighbors => {
124 all_neighbors => {
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/itaps/imesh/
H A DiMeshP_MOAB.cpp776 std::vector<int> all_neighbors; in iMeshP_getPartNborsArr() local
784 std::copy( pnbor, pnbor+n, std::back_inserter(all_neighbors) ); in iMeshP_getPartNborsArr()
787 ALLOC_CHECK_ARRAY_NOFAIL( nbor_part_ids, all_neighbors.size() ); in iMeshP_getPartNborsArr()
788 memcpy( *nbor_part_ids, &all_neighbors[0], sizeof(int)*all_neighbors.size() ); in iMeshP_getPartNborsArr()
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/src/
H A Danimation.cpp308 constexpr explosion_neighbors all_neighbors = N_NORTH | N_SOUTH | N_WEST | N_EAST; in draw_custom_explosion() local
391 if( pr.second.neighborhood != all_neighbors ) { in draw_custom_explosion()
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/src/
H A Danimation.cpp308 constexpr explosion_neighbors all_neighbors = N_NORTH | N_SOUTH | N_WEST | N_EAST; in draw_custom_explosion() local
391 if( pr.second.neighborhood != all_neighbors ) { in draw_custom_explosion()
/dports/math/py-networkx/networkx-2.6.3/networkx/classes/
H A Dfunction.py855 def all_neighbors(graph, node): function
/dports/science/cp2k/cp2k-2e995eec7fd208c8a72d9544807bd8b8ba8cd1cc/src/
H A Dxas_tdp_atom.F518 SUBROUTINE find_neighbors(base_atoms, mat_s, radius, qs_env, all_neighbors, neighbor_set) argument
524 INTEGER, DIMENSION(:), OPTIONAL, POINTER :: all_neighbors local
633 IF (PRESENT(all_neighbors)) THEN
644 ALLOCATE (all_neighbors(natom))
649 all_neighbors(i) = iat
652 CALL reallocate(all_neighbors, 1, i)
932 … qs_env, all_neighbors=all_ri_atoms, neighbor_set=xas_atom_env%exat_neighbors)
/dports/science/cp2k-data/cp2k-7.1.0/src/
H A Dxas_tdp_atom.F516 SUBROUTINE find_neighbors(base_atoms, mat_s, radius, qs_env, all_neighbors, neighbor_set) argument
522 INTEGER, DIMENSION(:), OPTIONAL, POINTER :: all_neighbors local
631 IF (PRESENT(all_neighbors)) THEN
642 ALLOCATE (all_neighbors(natom))
647 all_neighbors(i) = iat
650 CALL reallocate(all_neighbors, 1, i)
924 … qs_env, all_neighbors=all_ri_atoms, neighbor_set=xas_atom_env%exat_neighbors)
/dports/net-mgmt/py-napalm/napalm-3.3.1/napalm/ios/
H A Dios.py1334 all_neighbors = set()
1341 all_neighbors.add(re.search(IP_ADDR_REGEX, line).group())
1343 all_neighbors.add(re.search(IPV6_ADDR_REGEX_2, line).group())
1350 for bgp_neighbor in all_neighbors:
/dports/german/BBBike/BBBike-3.18/
H A DBBBikeEdit.pm4437 my %all_neighbors = map {($_,1)} keys %{ $str_net_Net->{$p} };
4439 delete $all_neighbors{$_};
4441 if (keys %all_neighbors > 1) {
4442 for my $p1 (keys %all_neighbors) {
4443 for my $p2 (keys %all_neighbors) {
/dports/math/p5-Graph/Graph-0.9725/lib/
H A DGraph.pm615 *all_neighbors = \&all_neighbours;
618 &directed ? goto &all_successors : goto &all_neighbors;

12