1
1
mirror of https://github.com/github/semantic.git synced 2024-12-27 17:05:33 +03:00
semantic/src/Data/Graph.hs

8 lines
122 B
Haskell
Raw Normal View History

2018-05-11 19:07:05 +03:00
module Data.Graph
( Graph(..)
) where
import qualified Algebra.Graph as G
newtype Graph vertex = Graph (G.Graph vertex)