aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/networkx/algorithms/tests/test_smetric.py
blob: 528dbc8d69bf5dca221c17cd16118cf3ba01a2a9 (about) (plain)
1
2
3
4
5
6
7
8
import pytest

import networkx as nx


def test_smetric():
    G = nx.Graph([(1, 2), (2, 3), (2, 4), (1, 4)])
    assert nx.s_metric(G) == 19.0