fgl-5.5.2.0: test/Data/Graph/Inductive/Query/Properties.hs
{-# LANGUAGE CPP, FlexibleContexts #-}
{- |
Module : Data.Graph.Inductive.Query.Properties
Description : Properties for Query modules
Copyright : (c) Ivan Lazar Miljenovic
License : BSD3
Maintainer : Ivan.Miljenovic@gmail.com
Rather than having an individual module of properties for each
`Data.Graph.Inductive.Query.*` module, this combines all such
properties and tests into one module.
-}
module Data.Graph.Inductive.Query.Properties where
import Data.Graph.Inductive.Arbitrary
import Data.Graph.Inductive.Example (clr595, vor)
import Data.Graph.Inductive.Graph
import Data.Graph.Inductive.PatriciaTree (Gr)
import Data.Graph.Inductive.Proxy
import Data.Graph.Inductive.Query
import Test.Hspec (Spec, describe, it, shouldBe, shouldMatchList,
shouldSatisfy)
import Test.QuickCheck
import Control.Arrow (second)
import Data.List (delete, sort, unfoldr)
import qualified Data.Set as S
#if __GLASGOW_HASKELL__ < 710
import Control.Applicative ((<*>))
#endif
{-# ANN module "HLint: ignore Use camelCase" #-}
-- -----------------------------------------------------------------------------
-- Articulation Points
-- | Deleting the articulation points should increase the number of
-- components.
test_ap :: (ArbGraph gr) => Proxy (gr a b) -> Undirected gr a b -> Property
test_ap _ ug = not (isEmpty g) ==>
null points || noComponents (delNodes points g) > noComponents g
where
g = toBaseGraph ug
points = ap g
-- -----------------------------------------------------------------------------
-- BCC
-- | Test that the bi-connected components are indeed composed solely
-- from the original graph (and comprise the entire original graph).
test_bcc :: (ArbGraph gr, Ord b) => Proxy (gr a b) -> UConnected gr a b -> Bool
test_bcc _ cg = sort (concatMap labEdges bgs) == sort (labEdges g)
-- Don't test labNodes as a node
-- may be repeated in multiple
-- bi-connected components.
where
g = connGraph cg
bgs = bcc g
-- -----------------------------------------------------------------------------
-- BFS
test_bfs :: (ArbGraph gr) => Proxy (gr a b) -> UConnected gr a b -> Bool
test_bfs _ cg = sort (bfs (connNode cg) g) == sort (nodes g)
where
g = connGraph cg
test_level :: (ArbGraph gr) => Proxy (gr a b) -> UConnected gr a b -> Bool
test_level _ cg = sort expect == sort (level cn g)
where
g = connGraph cg
cn = connNode cg
vs = delete cn (nodes g)
expect = (cn,0) : map (flip (,) 1) vs
-- esp tested as part of test_sp
-- -----------------------------------------------------------------------------
-- DFS
-- TODO: flesh out
-- | The 'components' function should never return an empty list, and
-- none of its sub-lists should be empty (unless the graph is
-- empty). All nodes in the graph should be in precisely one of the
-- components.
test_components :: (ArbGraph gr) => Proxy (gr a b) -> UConnected gr a b -> Bool
test_components _ cg = all (not . null) cs && sort (concat cs) == sort (nodes g)
where
g = connGraph cg
cs = components g
-- | The strongly connected components should be a partitioning of the
-- nodes of a graph.
test_scc :: (Graph gr) => Proxy (gr a b) -> gr a b -> Bool
test_scc _ g = sort (concat (scc g)) == sort (nodes g)
-- | Every node in an undirected connected graph should be reachable.
test_reachable :: (ArbGraph gr) => Proxy (gr a b) -> UConnected gr a b -> Property
test_reachable _ cg = not (isEmpty g) ==> sort (reachable v g) == sort (nodes g)
where
g = connGraph cg
v = node' . fst . matchAny $ g
-- | The nodes of the condensation should be exactly the connected
-- components, and the edges of the condensation should correspond
-- exactly to the edges between the connected components.
test_condensation :: (Graph gr) => Proxy (gr a b) -> gr a b -> Bool
test_condensation _ g = sort sccs == sort (map snd $ labNodes cdg)
&& and [ or [ hasEdge g (v,w) == hasEdge cdg (cv,cw)
| v <- sccv, w <- sccw ]
| (cv,sccv) <- labNodes cdg
, (cw,sccw) <- labNodes cdg
, cv /= cw
]
where
sccs = scc g
cdg = condensation g
-- -----------------------------------------------------------------------------
-- Dominators
test_dom :: Spec
test_dom = it "dom" $
sortIt (dom domGraph 1) `shouldMatchList` [ (1, [1])
, (2, [1,2])
, (3, [1,2,3])
, (4, [1,2,4])
, (5, [1,2,5])
, (6, [1,2,6])
]
where
sortIt = map (second sort)
test_iDom :: Spec
test_iDom = it "iDom" $
iDom domGraph 1 `shouldMatchList` [(2,1),(3,2),(4,2),(5,2),(6,2)]
-- Taken from <https://en.wikipedia.org/wiki/Dominator_%28graph_theory%29>
domGraph :: Gr () ()
domGraph = mkUGraph [1..6]
[ (1,2)
, (2,3)
, (2,4)
, (2,6)
, (3,5)
, (4,5)
, (5,2)
]
-- -----------------------------------------------------------------------------
-- GVD
test_voronoiSet :: Spec
test_voronoiSet = describe "voronoiSet" $ do
describe "inwards" $ do
it "with root node" (voronoiSet 4 vd `shouldMatchList` [1,2,4])
it "other node" (voronoiSet 1 vd `shouldSatisfy` null)
describe "outwards" $ do
it "with root node" (voronoiSet 4 vd0 `shouldMatchList` [2,4,6,7])
it "other node" (voronoiSet 1 vd0 `shouldSatisfy` null)
test_nearestNode :: Spec
test_nearestNode = describe "nearestNode" $ do
describe "inwards" $ do
it "reachable" (nearestNode 6 vd `shouldBe` Just 5)
it "unreachable" (nearestNode 7 vd `shouldBe` Nothing)
describe "outwards" $ do
it "reachable" (nearestNode 6 vd0 `shouldBe` Just 4)
it "unreachable" (nearestNode 1 vd0 `shouldBe` Nothing)
test_nearestDist :: Spec
test_nearestDist = describe "nearestDist" $ do
describe "inwards" $ do
it "root" (nearestDist 4 vd `shouldBe` Just 0)
it "reachable" (nearestDist 1 vd `shouldBe` Just 3)
it "unreachable" (nearestDist 7 vd `shouldBe` Nothing)
describe "outwards" $ do
it "root" (nearestDist 5 vd0 `shouldBe` Just 0)
it "reachable" (nearestDist 7 vd0 `shouldBe` Just 4)
it "unreachable" (nearestDist 1 vd0 `shouldBe` Nothing)
test_nearestPath :: Spec
test_nearestPath = describe "nearestPath" $ do
describe "inwards" $ do
it "reachable" (nearestPath 1 vd `shouldBe` Just [1,4])
it "unreachable" (nearestPath 7 vd `shouldBe` Nothing)
describe "outwards" $ do
it "reachable" (nearestPath 7 vd0 `shouldBe` Just [7,6,4])
it "unreachable" (nearestPath 1 vd0 `shouldBe` Nothing)
vd :: Voronoi Int
vd = gvdIn [4,5] vor
vd0 :: Voronoi Int
vd0 = gvdOut [4,5] vor
-- -----------------------------------------------------------------------------
-- Indep
-- TODO: how to prove that the found independent set is /maximal/?
-- | Make sure the size of independent sets is indeed accurate.
test_indepSize :: (ArbGraph gr) => Proxy (gr a b) -> gr a b -> Bool
test_indepSize _ ag = uncurry ((==) . length) (indepSize g)
where
g = toBaseGraph ag
-- | Is this really an independent set?
test_indep :: (ArbGraph gr) => Proxy (gr a b) -> gr a b -> Bool
test_indep _ ag = and . unfoldr checkSet . S.fromList $ indep g
where
g = toBaseGraph ag
checkSet = fmap checkVal . S.minView
checkVal (v,ws) = (S.null (S.fromList (neighbors g v) `S.intersection` ws), ws)
-- -----------------------------------------------------------------------------
-- MaxFlow2
-- As it is difficult to generate a suitable arbitrary graph for which
-- there /is/ a valid flow, we instead use unit tests based upon the
-- examples in the source code.
-- | Maximum flow of 2000
exampleNetwork1 :: Network
exampleNetwork1 = emap (flip (,) 0 . fromIntegral) exampleFlowGraph1
-- | Taken from "Introduction to Algorithms" (Cormen, Leiserson, Rivest).
-- This network has a maximum flow of 23
exampleNetwork2 :: Network
-- Names of nodes in "Introduction to Algorithms":
-- 1: s
-- 2: v1
-- 3: v2
-- 4: v3
-- 5: v4
-- 6: t
exampleNetwork2 = nemap (const ()) (flip (,) 0 . fromIntegral) clr595
clr595_network :: Network
clr595_network = maxFlowgraph clr595' 1 6
where
clr595' = nemap (const ()) fromIntegral clr595
test_maxFlow2_with :: String -> (Network -> Node -> Node -> (Network,Double)) -> Spec
test_maxFlow2_with nm f = it nm $ do
snd (f exampleNetwork1 1 4) `shouldBe` 2000
snd (f exampleNetwork2 1 6) `shouldBe` 23
test_maxFlow2 :: Spec
test_maxFlow2 = describe "MaxFlow2" $ do
test_maxFlow2_with "ekSimple" ekSimple
test_maxFlow2_with "ekFused" ekFused
test_maxFlow2_with "ekList" ekList
-- -----------------------------------------------------------------------------
-- MaxFlow
-- TODO: test other exported functions.
exampleFlowGraph1 :: Gr () Int
exampleFlowGraph1 = mkGraph [ (1,()), (2,()), (3,()), (4,()) ]
[ (1,2,1000), (1,3,1000)
, (2,3,1), (2,4,1000), (3,4,1000)
]
test_maxFlow :: Spec
test_maxFlow = it "maxFlow" $ do
maxFlow exampleFlowGraph1 1 4 `shouldBe` 2000
maxFlow clr595 1 6 `shouldBe` 23
-- -----------------------------------------------------------------------------
-- MST
-- | A minimum spanning tree of a connected, undirected graph should
-- cover all nodes, and all edges in the tree should be present in
-- the original graph.
test_msTree :: (ArbGraph gr) => Proxy (gr a b) -> UConnected gr () Int -> Bool
test_msTree _ cg = ns == mstNs && S.isSubsetOf mstEs es
where
g = connGraph cg -- a Connected graph is always non-empty
mst = map unLPath (msTree g)
ns = S.fromList (nodes g)
es = S.fromList (labEdges g)
mstNs = S.unions (map (S.fromList . map fst) mst)
mstEs = S.unions (map (S.fromList . (zipWith toE <*> tail)) mst)
toE (w,l) (v,_) = (v,w,l)
-- -----------------------------------------------------------------------------
-- SP
test_sp :: (ArbGraph gr) => Proxy (gr a b) -> UConnected gr () (Positive Int) -> Bool
test_sp _ cg = all test_p (map unLPath (msTree g))
where
-- Use Positive to avoid problems with distances containing
-- negative lengths.
g = emap getPositive (connGraph cg)
gCon = emap (const 1) g `asTypeOf` g
test_p p = length p >= len_gCon -- Length-based test
&& length (esp v w gCon) == len_gCon
&& sum (map snd p) >= spLength v w g -- Weighting-based test
where
v = fst (head p)
w = fst (last p)
len_gCon = length (sp v w gCon)
-- -----------------------------------------------------------------------------
-- TransClos
test_trc :: (ArbGraph gr, Eq (BaseGraph gr a ())) => Proxy (gr a b)
-> UConnected (SimpleGraph gr) a ()
-> Bool
test_trc _ cg = gReach == trc g
where
g = connGraph cg
lns = labNodes g
gReach = (`asTypeOf` g)
. insEdges [(v,w,()) | (v,_) <- lns, (w,_) <- lns]
$ mkGraph lns []
-- -----------------------------------------------------------------------------
-- Utility functions
type UConnected gr a b = Connected (Undirected gr) a b