Copyright | Copyright (C) 2021 Yoo Chung |
---|---|
License | GPL-3.0-or-later |
Maintainer | dev@chungyc.org |
Safe Haskell | Safe-Inferred |
Language | GHC2021 |
Some solutions to Problems.P80 of Ninety-Nine Haskell Problems.
Synopsis
- class Graph g => ConvertibleGraph g
- toLists :: ConvertibleGraph g => g -> Lists
- toAdjacency :: ConvertibleGraph g => g -> Adjacency
- toPaths :: ConvertibleGraph g => g -> Paths
- toG :: ConvertibleGraph g => g -> G
Documentation
class Graph g => ConvertibleGraph g Source #
toAdjacency :: ConvertibleGraph g => g -> Adjacency Source #
Convert graph to the Adjacency
representation.