gargantext-0.0.7.1.5.3: Search, map, share
Copyright(c) CNRS 2017-Present
LicenseAGPL + CECILL v3
Maintainerteam@gargantext.org
Stabilityexperimental
PortabilityPOSIX
Safe HaskellSafe-Inferred
LanguageHaskell2010

Gargantext.Core.Viz.Graph.Tools.IGraph

Description

  • Gábor Csárdi, Tamás Nepusz: The igraph software package for complex network research. InterJournal Complex Systems, 1695, 2006.
Synopsis

Documentation

type Graph_Undirected = Graph 'U () () #

Main Types

type Graph_Directed = Graph 'D () () #

type Node = Node #

type Graph = Graph #

neighbors :: Graph d v e -> Node -> [Node] #

Main Graph management Functions

edges :: Graph d v e -> [Edge] #

nodes :: Graph d v e -> [Node] #

maximalCliques :: Graph d v e -> [[Int]] #

Partitions

type Seed = Int #

partitions_spinglass' :: (Serialize v, Serialize e) => Seed -> Graph 'U v e -> IO [[Int]] #

Tools to analyze graphs

mkGraph :: (SingI d, Ord v, Serialize v, Serialize e) => [v] -> [LEdge e] -> Graph d v e #