haskell-igraph-0.7.0: Haskell interface of the igraph library.

Safe HaskellNone
LanguageHaskell2010

IGraph.Algorithms.Layout

Documentation

data LayoutMethod Source #

Constructors

KamadaKawai 

Fields

LGL 

Fields

  • lgl_nIter :: !Int
     
  • lgl_maxdelta :: Int -> Double

    The maximum length of the move allowed for a vertex in a single iteration. A reasonable default is the number of vertices.

  • lgl_area :: Int -> Double

    This parameter gives the area of the square on which the vertices will be placed. A reasonable default value is the number of vertices squared.

  • lgl_coolexp :: !Double

    The cooling exponent. A reasonable default value is 1.5.

  • lgl_repulserad :: Int -> Double

    Determines the radius at which vertex-vertex repulsion cancels out attraction of adjacent vertices. A reasonable default value is area times the number of vertices.

  • lgl_cellsize :: Int -> Double