build devShells.x86_64-linux.ghc948
802.02 s
[algebraic-graphs] ============ Minimum (Path Int): instances ============
802.02 s
[algebraic-graphs] OK: LeftNearRing
802.02 s
[algebraic-graphs]
802.02 s
[algebraic-graphs] ============ PowerSet (Path Int): instances ============
802.02 s
[algebraic-graphs] OK: Semiring
802.02 s
[algebraic-graphs] OK: Dioid
802.02 s
[algebraic-graphs]
802.02 s
[algebraic-graphs] ============ Count Int: instances ============
802.02 s
[algebraic-graphs] OK: Semiring
802.02 s
[algebraic-graphs] OK: StarSemiring
802.02 s
[algebraic-graphs]
802.02 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.consistent ============
802.02 s
[algebraic-graphs] OK: arbitraryLabelledAdjacencyMap
802.02 s
[algebraic-graphs] OK: empty
802.02 s
[algebraic-graphs] OK: vertex
802.02 s
[algebraic-graphs] OK: edge
802.02 s
[algebraic-graphs] OK: overlay
802.02 s
[algebraic-graphs] OK: connect
802.02 s
[algebraic-graphs] OK: vertices
802.02 s
[algebraic-graphs] OK: edges
802.02 s
[algebraic-graphs] OK: overlays
802.02 s
[algebraic-graphs] OK: fromAdjacencyMaps
802.02 s
[algebraic-graphs] OK: removeVertex
802.02 s
[algebraic-graphs] OK: removeEdge
802.02 s
[algebraic-graphs] OK: replaceVertex
802.02 s
[algebraic-graphs] OK: replaceEdge
802.02 s
[algebraic-graphs] OK: transpose
802.02 s
[algebraic-graphs] OK: gmap
802.02 s
[algebraic-graphs] OK: emap
802.02 s
[algebraic-graphs] OK: induce
802.02 s
[algebraic-graphs] OK: closure
802.02 s
[algebraic-graphs] OK: reflexiveClosure
802.02 s
[algebraic-graphs] OK: symmetricClosure
802.02 s
[algebraic-graphs] OK: transitiveClosure
802.02 s
[algebraic-graphs]
802.02 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.empty ============
802.02 s
[algebraic-graphs] OK: isEmpty empty == True
802.02 s
[algebraic-graphs] OK: hasVertex x empty == False
802.02 s
[algebraic-graphs] OK: vertexCount empty == 0
802.02 s
[algebraic-graphs] OK: edgeCount empty == 0
802.02 s
[algebraic-graphs]
802.02 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.vertex ============
802.02 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
802.02 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
802.02 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
802.02 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
802.02 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.edge ============
804.22 s
[algebraic-graphs] OK: edge e x y == connect e (vertex x) (vertex y)
804.22 s
[algebraic-graphs] OK: edge zero x y == vertices [x,y]
804.22 s
[algebraic-graphs] OK: hasEdge x y (edge e x y) == (e /= mempty)
804.22 s
[algebraic-graphs] OK: edgeLabel x y (edge e x y) == e
804.22 s
[algebraic-graphs] OK: edgeCount (edge e x y) == if e == mempty then 0 else 1
804.22 s
[algebraic-graphs] OK: vertexCount (edge e 1 1) == 1
804.22 s
[algebraic-graphs] OK: vertexCount (edge e 1 2) == 2
804.22 s
[algebraic-graphs] OK: x -<e>- y == edge e x y
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.overlay ============
804.22 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
804.22 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
804.22 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
804.22 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
804.22 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
804.22 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
804.22 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
804.22 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] OK: edgeLabel x y $ overlay (edge e x y) (edge zero x y) == e
804.22 s
[algebraic-graphs] OK: edgeLabel x y $ overlay (edge e x y) (edge f x y) == e <+> f
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] OK: edgeLabel 1 3 $ transitiveClosure (overlay (edge e 1 2) (edge one 2 3)) == e
804.22 s
[algebraic-graphs] OK: edgeLabel 1 3 $ transitiveClosure (overlay (edge e 1 2) (edge f 2 3)) == e <.> f
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.connect ============
804.22 s
[algebraic-graphs] OK: isEmpty (connect e x y) == isEmpty x && isEmpty y
804.22 s
[algebraic-graphs] OK: hasVertex z (connect e x y) == hasVertex z x || hasVertex z y
804.22 s
[algebraic-graphs] OK: vertexCount (connect e x y) >= vertexCount x
804.22 s
[algebraic-graphs] OK: vertexCount (connect e x y) <= vertexCount x + vertexCount y
804.22 s
[algebraic-graphs] OK: edgeCount (connect e x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
804.22 s
[algebraic-graphs] OK: vertexCount (connect e 1 2) == 2
804.22 s
[algebraic-graphs] OK: edgeCount (connect e 1 2) == if e == zero then 0 else 1
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.vertices ============
804.22 s
[algebraic-graphs] OK: vertices [] == empty
804.22 s
[algebraic-graphs] OK: vertices [x] == vertex x
804.22 s
[algebraic-graphs] OK: vertices == overlays . map vertex
804.22 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
804.22 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
804.22 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.edges ============
804.22 s
[algebraic-graphs] OK: edges [] == empty
804.22 s
[algebraic-graphs] OK: edges [(e,x,y)] == edge e x y
804.22 s
[algebraic-graphs] OK: edges == overlays . map (\(e, x, y) -> edge e x y)
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.overlays ============
804.22 s
[algebraic-graphs] OK: overlays [] == empty
804.22 s
[algebraic-graphs] OK: overlays [x] == x
804.22 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
804.22 s
[algebraic-graphs] OK: overlays == foldr overlay empty
804.22 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.fromAdjacencyMaps ============
804.22 s
[algebraic-graphs] OK: fromAdjacencyMaps [] == empty
804.22 s
[algebraic-graphs] OK: fromAdjacencyMaps [(x, Map.empty)] == vertex x
804.22 s
[algebraic-graphs] OK: fromAdjacencyMaps [(x, Map.singleton y e)] == if e == zero then vertices [x,y] else edge e x y
804.22 s
[algebraic-graphs] OK: overlay (fromAdjacencyMaps xs) (fromAdjacencyMaps ys) == fromAdjacencyMaps (xs ++ ys)
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.isSubgraphOf ============
804.22 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
804.22 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
804.22 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.isEmpty ============
804.22 s
[algebraic-graphs] OK: isEmpty empty == True
804.22 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
804.22 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
804.22 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
804.22 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge e x y) == False
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.hasVertex ============
804.22 s
[algebraic-graphs] OK: hasVertex x empty == False
804.22 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
804.22 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.hasEdge ============
804.22 s
[algebraic-graphs] OK: hasEdge x y empty == False
804.22 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
804.22 s
[algebraic-graphs] OK: hasEdge x y (edge e x y) == (e /= zero)
804.22 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
804.22 s
[algebraic-graphs] OK: hasEdge x y == not . null . filter (\(_,ex,ey) -> ex == x && ey == y) . edgeList
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.edgeLabel ============
804.22 s
[algebraic-graphs] OK: edgeLabel x y empty == zero
804.22 s
[algebraic-graphs] OK: edgeLabel x y (vertex z) == zero
804.22 s
[algebraic-graphs] OK: edgeLabel x y (edge e x y) == e
804.22 s
[algebraic-graphs] OK: edgeLabel s t (overlay x y) == edgeLabel s t x + edgeLabel s t y
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.vertexCount ============
804.22 s
[algebraic-graphs] OK: vertexCount empty == 0
804.22 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
804.22 s
[algebraic-graphs] OK: vertexCount == length . vertexList
804.22 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.edgeCount ============
804.22 s
[algebraic-graphs] OK: edgeCount empty == 0
804.22 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
804.22 s
[algebraic-graphs] OK: edgeCount (edge e x y) == if e == zero then 0 else 1
804.22 s
[algebraic-graphs] OK: edgeCount == length . edgeList
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.vertexList ============
804.22 s
[algebraic-graphs] OK: vertexList empty == []
804.22 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
804.22 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.edgeList ============
804.22 s
[algebraic-graphs] OK: edgeList empty == []
804.22 s
[algebraic-graphs] OK: edgeList (vertex x) == []
804.22 s
[algebraic-graphs] OK: edgeList (edge e x y) == if e == zero then [] else [(e,x,y)]
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.vertexSet ============
804.22 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
804.22 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
804.22 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.edgeSet ============
804.22 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
804.22 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
804.22 s
[algebraic-graphs] OK: edgeSet (edge e x y) == if e == zero then Set.empty else Set.singleton (e,x,y)
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.preSet ============
804.22 s
[algebraic-graphs] OK: preSet x empty == Set.empty
804.22 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
804.22 s
[algebraic-graphs] OK: preSet 1 (edge e 1 2) == Set.empty
804.22 s
[algebraic-graphs] OK: preSet y (edge e x y) == if e == zero then Set.empty else Set.fromList [x]
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.postSet ============
804.22 s
[algebraic-graphs] OK: postSet x empty == Set.empty
804.22 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
804.22 s
[algebraic-graphs] OK: postSet x (edge e x y) == if e == zero then Set.empty else Set.fromList [y]
804.22 s
[algebraic-graphs] OK: postSet 2 (edge e 1 2) == Set.empty
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.skeleton ============
804.22 s
[algebraic-graphs] OK: hasEdge x y == hasEdge x y . skeleton
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.removeVertex ============
804.22 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
804.22 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
804.22 s
[algebraic-graphs] OK: removeVertex x (edge e x x) == empty
804.22 s
[algebraic-graphs] OK: removeVertex 1 (edge e 1 2) == vertex 2
804.22 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.removeEdge ============
804.22 s
[algebraic-graphs] OK: removeEdge x y (edge e x y) == vertices [x,y]
804.22 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
804.22 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
804.22 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
804.22 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.replaceVertex ============
804.22 s
[algebraic-graphs] OK: replaceVertex x x == id
804.22 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
804.22 s
[algebraic-graphs] OK: replaceVertex x y == gmap (\v -> if v == x then y else v)
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.replaceEdge ============
804.22 s
[algebraic-graphs] OK: replaceEdge e x y z == overlay (removeEdge x y z) (edge e x y)
804.22 s
[algebraic-graphs] OK: replaceEdge e x y (edge f x y) == edge e x y
804.22 s
[algebraic-graphs] OK: edgeLabel x y (replaceEdge e x y z) == e
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.transpose ============
804.22 s
[algebraic-graphs] OK: transpose empty == empty
804.22 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
804.22 s
[algebraic-graphs] OK: transpose (edge e x y) == edge e y x
804.22 s
[algebraic-graphs] OK: transpose . transpose == id
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.gmap ============
804.22 s
[algebraic-graphs] OK: gmap f empty == empty
804.22 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
804.22 s
[algebraic-graphs] OK: gmap f (edge e x y) == edge e (f x) (f y)
804.22 s
[algebraic-graphs] OK: gmap id == id
804.22 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.emap ============
804.22 s
[algebraic-graphs] OK: emap h empty == empty
804.22 s
[algebraic-graphs] OK: emap h (vertex x) == vertex x
804.22 s
[algebraic-graphs] OK: emap h (edge e x y) == edge (h e) x y
804.22 s
[algebraic-graphs] OK: emap h (overlay x y) == overlay (emap h x) (emap h y)
804.22 s
[algebraic-graphs] OK: emap h (connect e x y) == connect (h e) (emap h x) (emap h y)
804.22 s
[algebraic-graphs] OK: emap id == id
804.22 s
[algebraic-graphs] OK: emap g . emap h == emap (g . h)
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.induce ============
804.22 s
[algebraic-graphs] OK: induce (const True ) x == x
804.22 s
[algebraic-graphs] OK: induce (const False) x == empty
804.22 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
804.22 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
804.22 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
804.22 s
[algebraic-graphs]
804.22 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.induceJust ============
805.33 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
805.33 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
805.33 s
[algebraic-graphs] OK: induceJust . gmap Just == id
805.33 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.closure ============
805.33 s
[algebraic-graphs] OK: closure empty == empty
805.33 s
[algebraic-graphs] OK: closure (vertex x) == edge one x x
805.33 s
[algebraic-graphs] OK: closure (edge e x x) == edge one x x
805.33 s
[algebraic-graphs] OK: closure (edge e x y) == edges [(one,x,x), (e,x,y), (one,y,y)]
805.33 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
805.33 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
805.33 s
[algebraic-graphs] OK: closure . closure == closure
805.33 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.reflexiveClosure ============
805.33 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
805.33 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge one x x
805.33 s
[algebraic-graphs] OK: reflexiveClosure (edge e x x) == edge one x x
805.33 s
[algebraic-graphs] OK: reflexiveClosure (edge e x y) == edges [(one,x,x), (e,x,y), (one,y,y)]
805.33 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.symmetricClosure ============
805.33 s
[algebraic-graphs] OK: symmetricClosure empty == empty
805.33 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
805.33 s
[algebraic-graphs] OK: symmetricClosure (edge e x y) == edges [(e,x,y), (e,y,x)]
805.33 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
805.33 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.transitiveClosure ============
805.33 s
[algebraic-graphs] OK: transitiveClosure empty == empty
805.33 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
805.33 s
[algebraic-graphs] OK: transitiveClosure (edge e x y) == edge e x y
805.33 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.empty ============
805.33 s
[algebraic-graphs] OK: isEmpty empty == True
805.33 s
[algebraic-graphs] OK: hasVertex x empty == False
805.33 s
[algebraic-graphs] OK: vertexCount empty == 0
805.33 s
[algebraic-graphs] OK: edgeCount empty == 0
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.vertex ============
805.33 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
805.33 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
805.33 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
805.33 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.edge ============
805.33 s
[algebraic-graphs] OK: edge e x y == connect e (vertex x) (vertex y)
805.33 s
[algebraic-graphs] OK: edge zero x y == vertices [x,y]
805.33 s
[algebraic-graphs] OK: hasEdge x y (edge e x y) == (e /= mempty)
805.33 s
[algebraic-graphs] OK: edgeLabel x y (edge e x y) == e
805.33 s
[algebraic-graphs] OK: edgeCount (edge e x y) == if e == mempty then 0 else 1
805.33 s
[algebraic-graphs] OK: vertexCount (edge e 1 1) == 1
805.33 s
[algebraic-graphs] OK: vertexCount (edge e 1 2) == 2
805.33 s
[algebraic-graphs] OK: x -<e>- y == edge e x y
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.overlay ============
805.33 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
805.33 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
805.33 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
805.33 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
805.33 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
805.33 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
805.33 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
805.33 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] OK: edgeLabel x y $ overlay (edge e x y) (edge zero x y) == e
805.33 s
[algebraic-graphs] OK: edgeLabel x y $ overlay (edge e x y) (edge f x y) == e <+> f
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] OK: edgeLabel 1 3 $ transitiveClosure (overlay (edge e 1 2) (edge one 2 3)) == e
805.33 s
[algebraic-graphs] OK: edgeLabel 1 3 $ transitiveClosure (overlay (edge e 1 2) (edge f 2 3)) == e <.> f
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.connect ============
805.33 s
[algebraic-graphs] OK: isEmpty (connect e x y) == isEmpty x && isEmpty y
805.33 s
[algebraic-graphs] OK: hasVertex z (connect e x y) == hasVertex z x || hasVertex z y
805.33 s
[algebraic-graphs] OK: vertexCount (connect e x y) >= vertexCount x
805.33 s
[algebraic-graphs] OK: vertexCount (connect e x y) <= vertexCount x + vertexCount y
805.33 s
[algebraic-graphs] OK: edgeCount (connect e x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
805.33 s
[algebraic-graphs] OK: vertexCount (connect e 1 2) == 2
805.33 s
[algebraic-graphs] OK: edgeCount (connect e 1 2) == if e == zero then 0 else 1
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.vertices ============
805.33 s
[algebraic-graphs] OK: vertices [] == empty
805.33 s
[algebraic-graphs] OK: vertices [x] == vertex x
805.33 s
[algebraic-graphs] OK: vertices == overlays . map vertex
805.33 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
805.33 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
805.33 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.edges ============
805.33 s
[algebraic-graphs] OK: edges [] == empty
805.33 s
[algebraic-graphs] OK: edges [(e,x,y)] == edge e x y
805.33 s
[algebraic-graphs] OK: edges == overlays . map (\(e, x, y) -> edge e x y)
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.overlays ============
805.33 s
[algebraic-graphs] OK: overlays [] == empty
805.33 s
[algebraic-graphs] OK: overlays [x] == x
805.33 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
805.33 s
[algebraic-graphs] OK: overlays == foldr overlay empty
805.33 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.foldg ============
805.33 s
[algebraic-graphs] OK: foldg empty vertex connect == id
805.33 s
[algebraic-graphs] OK: foldg empty vertex (fmap flip connect) == transpose
805.33 s
[algebraic-graphs] OK: foldg 1 (const 1) (const (+)) == size
805.33 s
[algebraic-graphs] OK: foldg True (const False) (const (&&)) == isEmpty
805.33 s
[algebraic-graphs] OK: foldg False (== x) (const (||)) == hasVertex x
805.33 s
[algebraic-graphs] OK: foldg Set.empty Set.singleton (const Set.union) == vertexSet
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.buildg ============
805.33 s
[algebraic-graphs] OK: buildg (\e _ _ -> e) == empty
805.33 s
[algebraic-graphs] OK: buildg (\_ v _ -> v x) == vertex x
805.33 s
[algebraic-graphs] OK: buildg (\e v c -> c l (foldg e v c x) (foldg e v c y)) == connect l x y
805.33 s
[algebraic-graphs] OK: buildg (\e v c -> foldr (c zero) e (map v xs)) == vertices xs
805.33 s
[algebraic-graphs] OK: buildg (\e v c -> foldg e v (flip c) g) == transpose g
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.isSubgraphOf ============
805.33 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
805.33 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
805.33 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.isEmpty ============
805.33 s
[algebraic-graphs] OK: isEmpty empty == True
805.33 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
805.33 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
805.33 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
805.33 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge e x y) == False
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.size ============
805.33 s
[algebraic-graphs] OK: size empty == 1
805.33 s
[algebraic-graphs] OK: size (vertex x) == 1
805.33 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
805.33 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
805.33 s
[algebraic-graphs] OK: size x >= 1
805.33 s
[algebraic-graphs] OK: size x >= vertexCount x
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.hasVertex ============
805.33 s
[algebraic-graphs] OK: hasVertex x empty == False
805.33 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
805.33 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.hasEdge ============
805.33 s
[algebraic-graphs] OK: hasEdge x y empty == False
805.33 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
805.33 s
[algebraic-graphs] OK: hasEdge x y (edge e x y) == (e /= zero)
805.33 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
805.33 s
[algebraic-graphs] OK: hasEdge x y == not . null . filter (\(_,ex,ey) -> ex == x && ey == y) . edgeList
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.edgeLabel ============
805.33 s
[algebraic-graphs] OK: edgeLabel x y empty == zero
805.33 s
[algebraic-graphs] OK: edgeLabel x y (vertex z) == zero
805.33 s
[algebraic-graphs] OK: edgeLabel x y (edge e x y) == e
805.33 s
[algebraic-graphs] OK: edgeLabel s t (overlay x y) == edgeLabel s t x + edgeLabel s t y
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.vertexCount ============
805.33 s
[algebraic-graphs] OK: vertexCount empty == 0
805.33 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
805.33 s
[algebraic-graphs] OK: vertexCount == length . vertexList
805.33 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.edgeCount ============
805.33 s
[algebraic-graphs] OK: edgeCount empty == 0
805.33 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
805.33 s
[algebraic-graphs] OK: edgeCount (edge e x y) == if e == zero then 0 else 1
805.33 s
[algebraic-graphs] OK: edgeCount == length . edgeList
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.vertexList ============
805.33 s
[algebraic-graphs] OK: vertexList empty == []
805.33 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
805.33 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.edgeList ============
805.33 s
[algebraic-graphs] OK: edgeList empty == []
805.33 s
[algebraic-graphs] OK: edgeList (vertex x) == []
805.33 s
[algebraic-graphs] OK: edgeList (edge e x y) == if e == zero then [] else [(e,x,y)]
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.vertexSet ============
805.33 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
805.33 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
805.33 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.edgeSet ============
805.33 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
805.33 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
805.33 s
[algebraic-graphs] OK: edgeSet (edge e x y) == if e == zero then Set.empty else Set.singleton (e,x,y)
805.33 s
[algebraic-graphs]
805.33 s
[algebraic-graphs] ============ Labelled.Graph.preSet ============
805.33 s
[algebraic-graphs] OK: preSet x empty == Set.empty
805.33 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
807.77 s
[algebraic-graphs] OK: preSet 1 (edge e 1 2) == Set.empty
807.93 s
[algebraic-graphs] OK: preSet y (edge e x y) == if e == zero then Set.empty else Set.fromList [x]
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.postSet ============
807.93 s
[algebraic-graphs] OK: postSet x empty == Set.empty
807.93 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
807.93 s
[algebraic-graphs] OK: postSet x (edge e x y) == if e == zero then Set.empty else Set.fromList [y]
807.93 s
[algebraic-graphs] OK: postSet 2 (edge e 1 2) == Set.empty
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.removeVertex ============
807.93 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
807.93 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
807.93 s
[algebraic-graphs] OK: removeVertex x (edge e x x) == empty
807.93 s
[algebraic-graphs] OK: removeVertex 1 (edge e 1 2) == vertex 2
807.93 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.removeEdge ============
807.93 s
[algebraic-graphs] OK: removeEdge x y (edge e x y) == vertices [x,y]
807.93 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
807.93 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
807.93 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
807.93 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.replaceVertex ============
807.93 s
[algebraic-graphs] OK: replaceVertex x x == id
807.93 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
807.93 s
[algebraic-graphs] OK: replaceVertex x y == fmap (\v -> if v == x then y else v)
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.replaceEdge ============
807.93 s
[algebraic-graphs] OK: replaceEdge e x y z == overlay (removeEdge x y z) (edge e x y)
807.93 s
[algebraic-graphs] OK: replaceEdge e x y (edge f x y) == edge e x y
807.93 s
[algebraic-graphs] OK: edgeLabel x y (replaceEdge e x y z) == e
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.transpose ============
807.93 s
[algebraic-graphs] OK: transpose empty == empty
807.93 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
807.93 s
[algebraic-graphs] OK: transpose (edge e x y) == edge e y x
807.93 s
[algebraic-graphs] OK: transpose . transpose == id
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.fmap ============
807.93 s
[algebraic-graphs] OK: fmap f empty == empty
807.93 s
[algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
807.93 s
[algebraic-graphs] OK: fmap f (edge e x y) == edge e (f x) (f y)
807.93 s
[algebraic-graphs] OK: fmap id == id
807.93 s
[algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.emap ============
807.93 s
[algebraic-graphs] OK: emap h empty == empty
807.93 s
[algebraic-graphs] OK: emap h (vertex x) == vertex x
807.93 s
[algebraic-graphs] OK: emap h (edge e x y) == edge (h e) x y
807.93 s
[algebraic-graphs] OK: emap h (overlay x y) == overlay (emap h x) (emap h y)
807.93 s
[algebraic-graphs] OK: emap h (connect e x y) == connect (h e) (emap h x) (emap h y)
807.93 s
[algebraic-graphs] OK: emap id == id
807.93 s
[algebraic-graphs] OK: emap g . emap h == emap (g . h)
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.induce ============
807.93 s
[algebraic-graphs] OK: induce (const True ) x == x
807.93 s
[algebraic-graphs] OK: induce (const False) x == empty
807.93 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
807.93 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
807.93 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.induceJust ============
807.93 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
807.93 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
807.93 s
[algebraic-graphs] OK: induceJust . gmap Just == id
807.93 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.closure ============
807.93 s
[algebraic-graphs] OK: closure empty == empty
807.93 s
[algebraic-graphs] OK: closure (vertex x) == edge one x x
807.93 s
[algebraic-graphs] OK: closure (edge e x x) == edge one x x
807.93 s
[algebraic-graphs] OK: closure (edge e x y) == edges [(one,x,x), (e,x,y), (one,y,y)]
807.93 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
807.93 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
807.93 s
[algebraic-graphs] OK: closure . closure == closure
807.93 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.reflexiveClosure ============
807.93 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
807.93 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge one x x
807.93 s
[algebraic-graphs] OK: reflexiveClosure (edge e x x) == edge one x x
807.93 s
[algebraic-graphs] OK: reflexiveClosure (edge e x y) == edges [(one,x,x), (e,x,y), (one,y,y)]
807.93 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.symmetricClosure ============
807.93 s
[algebraic-graphs] OK: symmetricClosure empty == empty
807.93 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
807.93 s
[algebraic-graphs] OK: symmetricClosure (edge e x y) == edges [(e,x,y), (e,y,x)]
807.93 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
807.93 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.transitiveClosure ============
807.93 s
[algebraic-graphs] OK: transitiveClosure empty == empty
807.93 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
807.93 s
[algebraic-graphs] OK: transitiveClosure (edge e x y) == edge e x y
807.93 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Labelled.Graph.context ============
807.93 s
[algebraic-graphs] OK: context (const False) x == Nothing
807.93 s
[algebraic-graphs] OK: context (== 1) (edge e 1 2) == if e == zero then Just (Context [] []) else Just (Context [] [(e,2)])
807.93 s
[algebraic-graphs] OK: context (== 2) (edge e 1 2) == if e == zero then Just (Context [] []) else Just (Context [(e,1)] [] )
807.93 s
[algebraic-graphs] OK: context (const True ) (edge e 1 2) == if e == zero then Just (Context [] []) else Just (Context [(e,1)] [(e,2)])
807.93 s
[algebraic-graphs] OK: context (== 4) (3 * 1 * 4 * 1 * 5) == Just (Context [(one,3), (one,1)] [(one,1), (one,5)])
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap ============
807.93 s
[algebraic-graphs] OK: Axioms of non-empty graphs
807.93 s
[algebraic-graphs] OK: Theorems of non-empty graphs
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Ord (NonEmpty.AdjacencyMap a) ============
807.93 s
[algebraic-graphs] OK: vertex 1 < vertex 2
807.93 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
807.93 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
807.93 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
807.93 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
807.93 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
807.93 s
[algebraic-graphs] OK: x <= x + y
807.93 s
[algebraic-graphs] OK: x + y <= x * y
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ Show (NonEmpty.AdjacencyMap a) ============
807.93 s
[algebraic-graphs] OK: show (1 :: AdjacencyMap Int) == "vertex 1"
807.93 s
[algebraic-graphs] OK: show (1 + 2 :: AdjacencyMap Int) == "vertices1 [1,2]"
807.93 s
[algebraic-graphs] OK: show (1 * 2 :: AdjacencyMap Int) == "edge 1 2"
807.93 s
[algebraic-graphs] OK: show (1 * 2 * 3 :: AdjacencyMap Int) == "edges1 [(1,2),(1,3),(2,3)]"
807.93 s
[algebraic-graphs] OK: show (1 * 2 + 3 :: AdjacencyMap Int) == "overlay (vertex 3) (edge 1 2)"
807.93 s
[algebraic-graphs] OK: show (vertex (-1) :: AdjacencyMap Int) == "vertex (-1)"
807.93 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) :: AdjacencyMap Int) == "vertices1 [-2,-1]"
807.93 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) :: AdjacencyMap Int) == "edge (-1) (-2)"
807.93 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) * vertex (-3) :: AdjacencyMap Int) == "edges1 [(-2,-3),(-1,-3),(-1,-2)]"
807.93 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) + vertex (-3) :: AdjacencyMap Int) == "overlay (vertex (-3)) (edge (-1) (-2))"
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.toNonEmpty ============
807.93 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
807.93 s
[algebraic-graphs] OK: toNonEmpty . fromNonEmpty == Just
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.fromNonEmpty ============
807.93 s
[algebraic-graphs] OK: isEmpty . fromNonEmpty == const False
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertex ============
807.93 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
807.93 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
807.93 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edge ============
807.93 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
807.93 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
807.93 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
807.93 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
807.93 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlay ============
807.93 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
807.93 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
807.93 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
807.93 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
807.93 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
807.93 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
807.93 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connect ============
807.93 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
807.93 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
807.93 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
807.93 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
807.93 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
807.93 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
807.93 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
807.93 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
807.93 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertices1 ============
807.93 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
807.93 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
807.93 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
807.93 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
807.93 s
[algebraic-graphs]
807.93 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edges1 ============
807.93 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
807.93 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
807.93 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
807.93 s
[algebraic-graphs]
810.49 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlays1 ============
810.49 s
[algebraic-graphs] OK: overlays1 [x] == x
810.49 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
810.49 s
[algebraic-graphs]
810.49 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connects1 ============
810.50 s
[algebraic-graphs] OK: connects1 [x] == x
810.50 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.isSubgraphOf ============
810.50 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
810.50 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
810.50 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
810.50 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasVertex ============
810.50 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasEdge ============
810.50 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
810.50 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
810.50 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
810.50 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexCount ============
810.50 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
810.50 s
[algebraic-graphs] OK: vertexCount x >= 1
810.50 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeCount ============
810.50 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
810.50 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
810.50 s
[algebraic-graphs] OK: edgeCount == length . edgeList
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexList1 ============
810.50 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
810.50 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeList ============
810.50 s
[algebraic-graphs] OK: edgeList (vertex x) == []
810.50 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
810.50 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
810.50 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
810.50 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexSet ============
810.50 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
810.50 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
810.50 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeSet ============
810.50 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
810.50 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
810.50 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.preSet ============
810.50 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
810.50 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
810.50 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.postSet ============
810.50 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
810.50 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
810.50 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.path1 ============
810.50 s
[algebraic-graphs] OK: path1 [x] == vertex x
810.50 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
810.50 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.circuit1 ============
810.50 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
810.50 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
810.50 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.clique1 ============
810.50 s
[algebraic-graphs] OK: clique1 [x] == vertex x
810.50 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
810.50 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
810.50 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
810.50 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.biclique1 ============
810.50 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
810.50 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.star ============
810.50 s
[algebraic-graphs] OK: star x [] == vertex x
810.50 s
[algebraic-graphs] OK: star x [y] == edge x y
810.50 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.stars1 ============
810.50 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
810.50 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
810.50 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
810.50 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
810.50 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.tree ============
810.50 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
810.50 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
810.50 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
810.50 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeVertex1 ============
810.50 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
810.50 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
810.50 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
810.50 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
810.50 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeEdge ============
810.50 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
810.50 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
810.50 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
810.50 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.replaceVertex ============
810.50 s
[algebraic-graphs] OK: replaceVertex x x == id
810.50 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
810.50 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.mergeVertices ============
810.50 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
810.50 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
810.50 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
810.50 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transpose ============
810.50 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
810.50 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
810.50 s
[algebraic-graphs] OK: transpose . transpose == id
810.50 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.gmap ============
810.50 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
810.50 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
810.50 s
[algebraic-graphs] OK: gmap id == id
810.50 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induce1 ============
810.50 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
810.50 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
810.50 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
810.50 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induceJust1 ============
810.50 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
810.50 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
810.50 s
[algebraic-graphs] OK: induceJust1 . gmap Just == Just
810.50 s
[algebraic-graphs] OK: induceJust1 . gmap (\x -> if p x then Just x else Nothing) == induce1 p
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.closure ============
810.50 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
810.50 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
810.50 s
[algebraic-graphs] OK: closure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
810.50 s
[algebraic-graphs] OK: closure (path1 $ nub xs) == reflexiveClosure (clique1 $ nub xs)
810.50 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
810.50 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
810.50 s
[algebraic-graphs] OK: closure . closure == closure
810.50 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.reflexiveClosure ============
810.50 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
810.50 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
810.50 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
810.50 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.symmetricClosure ============
810.50 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
810.50 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges1 [(x,y), (y,x)]
810.50 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
810.50 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transitiveClosure ============
810.50 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
810.50 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
810.50 s
[algebraic-graphs] OK: transitiveClosure (path1 $ nub xs) == clique1 (nub $ xs)
810.50 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ NonEmpty.Graph.============
810.50 s
[algebraic-graphs] OK: Axioms of non-empty graphs
810.50 s
[algebraic-graphs] OK: Theorems of non-empty graphs
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ Ord (NonEmpty.Graph a) ============
810.50 s
[algebraic-graphs] OK: vertex 1 < vertex 2
810.50 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
810.50 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
810.50 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
810.50 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
810.50 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
810.50 s
[algebraic-graphs] OK: x <= x + y
810.50 s
[algebraic-graphs] OK: x + y <= x * y
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ Functor (NonEmpty.Graph a) ============
810.50 s
[algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
810.50 s
[algebraic-graphs] OK: fmap f (edge x y) == edge (f x) (f y)
810.50 s
[algebraic-graphs] OK: fmap id == id
810.50 s
[algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
810.50 s
[algebraic-graphs]
810.50 s
[algebraic-graphs] ============ Monad (NonEmpty.Graph a) ============
810.50 s
[algebraic-graphs] OK: (vertex x >>= f) == f x
811.83 s
[algebraic-graphs] OK: (edge x y >>= f) == connect (f x) (f y)
811.83 s
[algebraic-graphs] OK: (vertices1 xs >>= f) == overlays1 (fmap f xs)
811.83 s
[algebraic-graphs] OK: (x >>= vertex) == x
811.83 s
[algebraic-graphs] OK: ((x >>= f) >>= g) == (x >>= (\y -> (f y) >>= g))
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.toNonEmpty ============
811.83 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
811.83 s
[algebraic-graphs] OK: toNonEmpty (toGraph x) == Just (x :: NonEmpty.Graph a)
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.vertex ============
811.83 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
811.83 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
811.83 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
811.83 s
[algebraic-graphs] OK: size (vertex x) == 1
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.edge ============
811.83 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
811.83 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
811.83 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
811.83 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
811.83 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay ============
811.83 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
811.83 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
811.83 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
811.83 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
811.83 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
811.83 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
811.83 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
811.83 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay1 ============
811.83 s
[algebraic-graphs] OK: overlay1 empty x == x
811.83 s
[algebraic-graphs] OK: x /= empty ==> overlay1 x y == overlay (fromJust $ toNonEmpty x) y
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.connect ============
811.83 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
811.83 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
811.83 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
811.83 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
811.83 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
811.83 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
811.83 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
811.83 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
811.83 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
811.83 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.vertices1 ============
811.83 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
811.83 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
811.83 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
811.83 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.edges1 ============
811.83 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
811.83 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
811.83 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.overlays1 ============
811.83 s
[algebraic-graphs] OK: overlays1 [x] == x
811.83 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.connects1 ============
811.83 s
[algebraic-graphs] OK: connects1 [x] == x
811.83 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.foldg1 ============
811.83 s
[algebraic-graphs] OK: foldg1 vertex overlay connect == id
811.83 s
[algebraic-graphs] OK: foldg1 vertex overlay (flip connect) == transpose
811.83 s
[algebraic-graphs] OK: foldg1 (const 1) (+) (+) == size
811.83 s
[algebraic-graphs] OK: foldg1 (== x) (||) (||) == hasVertex x
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.isSubgraphOf ============
811.83 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
811.83 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
811.83 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
811.83 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.(===) ============
811.83 s
[algebraic-graphs] OK: x === x == True
811.83 s
[algebraic-graphs] OK: x + y === x + y == True
811.83 s
[algebraic-graphs] OK: 1 + 2 === 2 + 1 == False
811.83 s
[algebraic-graphs] OK: x + y === x * y == False
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.size ============
811.83 s
[algebraic-graphs] OK: size (vertex x) == 1
811.83 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
811.83 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
811.83 s
[algebraic-graphs] OK: size x >= 1
811.83 s
[algebraic-graphs] OK: size x >= vertexCount x
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.hasVertex ============
811.83 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.hasEdge ============
811.83 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
811.83 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
811.83 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
811.83 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexCount ============
811.83 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
811.83 s
[algebraic-graphs] OK: vertexCount x >= 1
811.83 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeCount ============
811.83 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
811.83 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
811.83 s
[algebraic-graphs] OK: edgeCount == length . edgeList
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexList1 ============
811.83 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
811.83 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeList ============
811.83 s
[algebraic-graphs] OK: edgeList (vertex x) == []
811.83 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
811.83 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
811.83 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
811.83 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
811.83 s
[algebraic-graphs]
811.83 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexSet ============
811.83 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
811.84 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
811.84 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeSet ============
811.84 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
811.84 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
811.84 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.path1 ============
811.84 s
[algebraic-graphs] OK: path1 [x] == vertex x
811.84 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
811.84 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.circuit1 ============
811.84 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
811.84 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
811.84 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.clique1 ============
811.84 s
[algebraic-graphs] OK: clique1 [x] == vertex x
811.84 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
811.84 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
811.84 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
811.84 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.biclique1 ============
811.84 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
811.84 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.star ============
811.84 s
[algebraic-graphs] OK: star x [] == vertex x
811.84 s
[algebraic-graphs] OK: star x [y] == edge x y
811.84 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.stars1 ============
811.84 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
811.84 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
811.84 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
811.84 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
811.84 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.tree ============
811.84 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
811.84 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
811.84 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
811.84 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.mesh1 ============
811.84 s
[algebraic-graphs] OK: mesh1 [x] [y] == vertex (x, y)
811.84 s
[algebraic-graphs] OK: mesh1 xs ys == box (path1 xs) (path1 ys)
811.84 s
[algebraic-graphs] OK: mesh1 [1,2,3] ['a', 'b'] == <correct result>
811.84 s
[algebraic-graphs] OK: size (mesh xs ys) == max 1 (3 * length xs * length ys - length xs - length ys -1)
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.torus1 ============
811.84 s
[algebraic-graphs] OK: torus1 [x] [y] == edge (x,y) (x,y)
811.84 s
[algebraic-graphs] OK: torus1 xs ys == box (circuit1 xs) (circuit1 ys)
811.84 s
[algebraic-graphs] OK: torus1 [1,2] ['a', 'b'] == <correct result>
811.84 s
[algebraic-graphs] OK: size (torus1 xs ys) == max 1 (3 * length xs * length ys)
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.removeVertex1 ============
811.84 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
811.84 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
811.84 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
811.84 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
811.84 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.removeEdge ============
811.84 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
811.84 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
811.84 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
811.84 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
811.84 s
[algebraic-graphs] OK: size (removeEdge x y z) <= 3 * size z
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.replaceVertex ============
811.84 s
[algebraic-graphs] OK: replaceVertex x x == id
811.84 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
811.84 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
811.84 s
[algebraic-graphs]
811.84 s
[algebraic-graphs] ============ NonEmpty.Graph.mergeVertices ============
811.84 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
817.00 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
817.00 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
817.04 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ NonEmpty.Graph.splitVertex1 ============
817.04 s
[algebraic-graphs] OK: splitVertex1 x [x] == id
817.04 s
[algebraic-graphs] OK: splitVertex1 x [y] == replaceVertex x y
817.04 s
[algebraic-graphs] OK: splitVertex1 1 [0,1] $ 1 * (2 + 3) == (0 + 1) * (2 + 3)
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ NonEmpty.Graph.transpose ============
817.04 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
817.04 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
817.04 s
[algebraic-graphs] OK: transpose . transpose == id
817.04 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
817.04 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ NonEmpty.Graph.induce1 ============
817.04 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
817.04 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
817.04 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
817.04 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ NonEmpty.Graph.induceJust1 ============
817.04 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
817.04 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
817.04 s
[algebraic-graphs] OK: induceJust1 . fmap Just == Just
817.04 s
[algebraic-graphs] OK: induceJust1 . fmap (\x -> if p x then Just x else Nothing) == induce1 p
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ NonEmpty.Graph.simplify ============
817.04 s
[algebraic-graphs] OK: simplify == id
817.04 s
[algebraic-graphs] OK: size (simplify x) <= size x
817.04 s
[algebraic-graphs] OK: simplify 1 === 1
817.04 s
[algebraic-graphs] OK: simplify (1 + 1) === 1
817.04 s
[algebraic-graphs] OK: simplify (1 + 2 + 1) === 1 + 2
817.04 s
[algebraic-graphs] OK: simplify (1 * 1 * 1) === 1 * 1
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsify ============
817.04 s
[algebraic-graphs] OK: sort . reachable x == sort . rights . reachable (sparsify x) . Right
817.04 s
[algebraic-graphs] OK: vertexCount (sparsify x) <= vertexCount x + size x + 1
817.04 s
[algebraic-graphs] OK: edgeCount (sparsify x) <= 3 * size x
817.04 s
[algebraic-graphs] OK: size (sparsify x) <= 3 * size x
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsifyKL ============
817.04 s
[algebraic-graphs] OK: sort . reachable x == sort . filter (<= n) . reachable (sparsifyKL n x)
817.04 s
[algebraic-graphs] OK: length (vertices $ sparsifyKL n x) <= vertexCount x + size x + 1
817.04 s
[algebraic-graphs] OK: length (edges $ sparsifyKL n x) <= 3 * size x
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ NonEmpty.Graph.box ============
817.04 s
[algebraic-graphs] OK: box (path1 [0,1]) (path1 ['a','b']) == <correct result>
817.04 s
[algebraic-graphs] OK: box x y ~~ box y x
817.04 s
[algebraic-graphs] OK: box x (overlay y z) == overlay (box x y) (box x z)
817.04 s
[algebraic-graphs] OK: box x (vertex ()) ~~ x
817.04 s
[algebraic-graphs] OK: box x (box y z) ~~ box (box x y) z
817.04 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
817.04 s
[algebraic-graphs] OK: vertexCount (box x y) == vertexCount x * vertexCount y
817.04 s
[algebraic-graphs] OK: edgeCount (box x y) <= vertexCount x * edgeCount y + edgeCount x * vertexCount y
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ Relation ============
817.04 s
[algebraic-graphs] OK: Axioms of graphs
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ Relation.consistent ============
817.04 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] OK: consistent empty == True
817.04 s
[algebraic-graphs] OK: consistent (vertex x) == True
817.04 s
[algebraic-graphs] OK: consistent (overlay x y) == True
817.04 s
[algebraic-graphs] OK: consistent (connect x y) == True
817.04 s
[algebraic-graphs] OK: consistent (edge x y) == True
817.04 s
[algebraic-graphs] OK: consistent (edges xs) == True
817.04 s
[algebraic-graphs] OK: consistent (stars xs) == True
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ Relation.Show ============
817.04 s
[algebraic-graphs] OK: show (empty ) == "empty"
817.04 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
817.04 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
817.04 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
817.04 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
817.04 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
817.04 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
817.04 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
817.04 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
817.04 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ Relation.Ord ============
817.04 s
[algebraic-graphs] OK: vertex 1 < vertex 2
817.04 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
817.04 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
817.04 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
817.04 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
817.04 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
817.04 s
[algebraic-graphs] OK: x <= x + y
817.04 s
[algebraic-graphs] OK: x + y <= x * y
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ Relation.empty ============
817.04 s
[algebraic-graphs] OK: isEmpty empty == True
817.04 s
[algebraic-graphs] OK: hasVertex x empty == False
817.04 s
[algebraic-graphs] OK: vertexCount empty == 0
817.04 s
[algebraic-graphs] OK: edgeCount empty == 0
817.04 s
[algebraic-graphs]
817.04 s
[algebraic-graphs] ============ Relation.vertex ============
817.04 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
817.04 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
817.04 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
817.04 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
817.04 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.edge ============
817.05 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
817.05 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
817.05 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
817.05 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
817.05 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
817.05 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.overlay ============
817.05 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
817.05 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
817.05 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
817.05 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
817.05 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
817.05 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
817.05 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
817.05 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
817.05 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.connect ============
817.05 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
817.05 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
817.05 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
817.05 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
817.05 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
817.05 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
817.05 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
817.05 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
817.05 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
817.05 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
817.05 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.vertices ============
817.05 s
[algebraic-graphs] OK: vertices [] == empty
817.05 s
[algebraic-graphs] OK: vertices [x] == vertex x
817.05 s
[algebraic-graphs] OK: vertices == overlays . map vertex
817.05 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
817.05 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
817.05 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
817.05 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.edges ============
817.05 s
[algebraic-graphs] OK: edges [] == empty
817.05 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
817.05 s
[algebraic-graphs] OK: edges == overlays . map (uncurry edge)
817.05 s
[algebraic-graphs] OK: edgeCount . edges == length . nub
817.05 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.overlays ============
817.05 s
[algebraic-graphs] OK: overlays [] == empty
817.05 s
[algebraic-graphs] OK: overlays [x] == x
817.05 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
817.05 s
[algebraic-graphs] OK: overlays == foldr overlay empty
817.05 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
817.05 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.connects ============
817.05 s
[algebraic-graphs] OK: connects [] == empty
817.05 s
[algebraic-graphs] OK: connects [x] == x
817.05 s
[algebraic-graphs] OK: connects [x,y] == connect x y
817.05 s
[algebraic-graphs] OK: connects == foldr connect empty
817.05 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
817.05 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.isSubgraphOf ============
817.05 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
817.05 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
817.05 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
817.05 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
817.05 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
817.05 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
817.05 s
[algebraic-graphs]
817.05 s
[algebraic-graphs] ============ Relation.toGraph et al. ============
817.05 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
817.05 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
817.05 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
817.05 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
817.05 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
817.05 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
817.05 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
817.05 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
817.05 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
817.05 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
817.05 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
817.05 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
817.05 s
[algebraic-graphs] OK: edgeSet == Algebra.Graph.AdjacencyMap.edgeSet . foldg empty vertex overlay connect
817.05 s
[algebraic-graphs] OK: preSet x == Algebra.Graph.AdjacencyMap.preSet x . toAdjacencyMap
817.05 s
[algebraic-graphs] OK: preIntSet x == Algebra.Graph.AdjacencyIntMap.preIntSet x . toAdjacencyIntMap
817.05 s
[algebraic-graphs] OK: postSet x == Algebra.Graph.AdjacencyMap.postSet x . toAdjacencyMap
817.05 s
[algebraic-graphs] OK: postIntSet x == Algebra.Graph.AdjacencyIntMap.postIntSet x . toAdjacencyIntMap
819.85 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
819.85 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
819.85 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
819.85 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
819.85 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
819.85 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
819.85 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
819.85 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
819.85 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
819.85 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
819.86 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
819.86 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
819.86 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
819.86 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
819.86 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
819.86 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
819.86 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
819.86 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.foldg ============
819.86 s
[algebraic-graphs] OK: foldg empty vertex overlay connect == id
819.86 s
[algebraic-graphs] OK: foldg empty vertex overlay (flip connect) == transpose
819.86 s
[algebraic-graphs] OK: foldg 1 (const 1) (+) (+) == size
819.86 s
[algebraic-graphs] OK: foldg True (const False) (&&) (&&) == isEmpty
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.isEmpty ============
819.86 s
[algebraic-graphs] OK: isEmpty empty == True
819.86 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
819.86 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
819.86 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
819.86 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.hasVertex ============
819.86 s
[algebraic-graphs] OK: hasVertex x empty == False
819.86 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
819.86 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.hasEdge ============
819.86 s
[algebraic-graphs] OK: hasEdge x y empty == False
819.86 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
819.86 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
819.86 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
819.86 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.vertexCount ============
819.86 s
[algebraic-graphs] OK: vertexCount empty == 0
819.86 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
819.86 s
[algebraic-graphs] OK: vertexCount == length . vertexList
819.86 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.edgeCount ============
819.86 s
[algebraic-graphs] OK: edgeCount empty == 0
819.86 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
819.86 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
819.86 s
[algebraic-graphs] OK: edgeCount == length . edgeList
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.vertexList ============
819.86 s
[algebraic-graphs] OK: vertexList empty == []
819.86 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
819.86 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.vertexSet ============
819.86 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
819.86 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
819.86 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.vertexIntSet ============
819.86 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
819.86 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
819.86 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
819.86 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.edgeList ============
819.86 s
[algebraic-graphs] OK: edgeList empty == []
819.86 s
[algebraic-graphs] OK: edgeList (vertex x) == []
819.86 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
819.86 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
819.86 s
[algebraic-graphs] OK: edgeList . edges == nub . sort
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.edgeSet ============
819.86 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
819.86 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
819.86 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
819.86 s
[algebraic-graphs] OK: edgeSet . edges == Set.fromList
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.adjacencyList ============
819.86 s
[algebraic-graphs] OK: adjacencyList empty == []
819.86 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
819.86 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [])]
819.86 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, []), (2, [1,3]), (3, [])]
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.preSet ============
819.86 s
[algebraic-graphs] OK: preSet x empty == Set.empty
819.86 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
819.86 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
819.86 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.preIntSet ============
819.86 s
[algebraic-graphs] OK: preIntSet x empty == IntSet.empty
819.86 s
[algebraic-graphs] OK: preIntSet x (vertex x) == IntSet.empty
819.86 s
[algebraic-graphs] OK: preIntSet 1 (edge 1 2) == IntSet.empty
819.86 s
[algebraic-graphs] OK: preIntSet y (edge x y) == IntSet.fromList [x]
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.postSet ============
819.86 s
[algebraic-graphs] OK: postSet x empty == Set.empty
819.86 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
819.86 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
819.86 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.postIntSet ============
819.86 s
[algebraic-graphs] OK: postIntSet x empty == IntSet.empty
819.86 s
[algebraic-graphs] OK: postIntSet x (vertex x) == IntSet.empty
819.86 s
[algebraic-graphs] OK: postIntSet 2 (edge 1 2) == IntSet.empty
819.86 s
[algebraic-graphs] OK: postIntSet x (edge x y) == IntSet.fromList [y]
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.path ============
819.86 s
[algebraic-graphs] OK: path [] == empty
819.86 s
[algebraic-graphs] OK: path [x] == vertex x
819.86 s
[algebraic-graphs] OK: path [x,y] == edge x y
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.circuit ============
819.86 s
[algebraic-graphs] OK: circuit [] == empty
819.86 s
[algebraic-graphs] OK: circuit [x] == edge x x
819.86 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.clique ============
819.86 s
[algebraic-graphs] OK: clique [] == empty
819.86 s
[algebraic-graphs] OK: clique [x] == vertex x
819.86 s
[algebraic-graphs] OK: clique [x,y] == edge x y
819.86 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
819.86 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.biclique ============
819.86 s
[algebraic-graphs] OK: biclique [] [] == empty
819.86 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
819.86 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
819.86 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
819.86 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.star ============
819.86 s
[algebraic-graphs] OK: star x [] == vertex x
819.86 s
[algebraic-graphs] OK: star x [y] == edge x y
819.86 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
819.86 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.stars ============
819.86 s
[algebraic-graphs] OK: stars [] == empty
819.86 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
819.86 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
819.86 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
819.86 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
819.86 s
[algebraic-graphs] OK: stars . adjacencyList == id
819.86 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.tree ============
819.86 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
819.86 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
819.86 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
819.86 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.forest ============
819.86 s
[algebraic-graphs] OK: forest [] == empty
819.86 s
[algebraic-graphs] OK: forest [x] == tree x
819.86 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
819.86 s
[algebraic-graphs] OK: forest == overlays . map tree
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.removeVertex ============
819.86 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
819.86 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
819.86 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
819.86 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
819.86 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.removeEdge ============
819.86 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
819.86 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
819.86 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
819.86 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
819.86 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.replaceVertex ============
819.86 s
[algebraic-graphs] OK: replaceVertex x x == id
819.86 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
819.86 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
819.86 s
[algebraic-graphs]
819.86 s
[algebraic-graphs] ============ Relation.mergeVertices ============
819.86 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
837.85 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
837.85 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
837.89 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.transpose ============
837.89 s
[algebraic-graphs] OK: transpose empty == empty
837.89 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
837.89 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
837.89 s
[algebraic-graphs] OK: transpose . transpose == id
837.89 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.gmap ============
837.89 s
[algebraic-graphs] OK: gmap f empty == empty
837.89 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
837.89 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
837.89 s
[algebraic-graphs] OK: gmap id == id
837.89 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.induce ============
837.89 s
[algebraic-graphs] OK: induce (const True ) x == x
837.89 s
[algebraic-graphs] OK: induce (const False) x == empty
837.89 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
837.89 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
837.89 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.compose ============
837.89 s
[algebraic-graphs] OK: compose empty x == empty
837.89 s
[algebraic-graphs] OK: compose x empty == empty
837.89 s
[algebraic-graphs] OK: compose (vertex x) y == empty
837.89 s
[algebraic-graphs] OK: compose x (vertex y) == empty
837.89 s
[algebraic-graphs] OK: compose x (compose y z) == compose (compose x y) z
837.89 s
[algebraic-graphs] OK: compose x (overlay y z) == overlay (compose x y) (compose x z)
837.89 s
[algebraic-graphs] OK: compose (overlay x y) z == overlay (compose x z) (compose y z)
837.89 s
[algebraic-graphs] OK: compose (edge x y) (edge y z) == edge x z
837.89 s
[algebraic-graphs] OK: compose (path [1..5]) (path [1..5]) == edges [(1,3),(2,4),(3,5)]
837.89 s
[algebraic-graphs] OK: compose (circuit [1..5]) (circuit [1..5]) == circuit [1,3,5,2,4]
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.closure ============
837.89 s
[algebraic-graphs] OK: closure empty == empty
837.89 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
837.89 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
837.89 s
[algebraic-graphs] OK: closure (edge x y) == edges [(x,x), (x,y), (y,y)]
837.89 s
[algebraic-graphs] OK: closure (path $ nub xs) == reflexiveClosure (clique $ nub xs)
837.89 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
837.89 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
837.89 s
[algebraic-graphs] OK: closure . closure == closure
837.89 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.reflexiveClosure ============
837.89 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
837.89 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
837.89 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
837.89 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges [(x,x), (x,y), (y,y)]
837.89 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.symmetricClosure ============
837.89 s
[algebraic-graphs] OK: symmetricClosure empty == empty
837.89 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
837.89 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges [(x,y), (y,x)]
837.89 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
837.89 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.transitiveClosure ============
837.89 s
[algebraic-graphs] OK: transitiveClosure empty == empty
837.89 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
837.89 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
837.89 s
[algebraic-graphs] OK: transitiveClosure (path $ nub xs) == clique (nub $ xs)
837.89 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Relation.induceJust ============
837.89 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
837.89 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
837.89 s
[algebraic-graphs] OK: induceJust . gmap Just == id
837.89 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ ReflexiveRelation ============
837.89 s
[algebraic-graphs] OK: Axioms of reflexive graphs
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ TransitiveRelation ============
837.89 s
[algebraic-graphs] OK: Axioms of transitive graphs
837.89 s
[algebraic-graphs] OK: path xs == (clique xs :: TransitiveRelation Int)
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ PreorderRelation ============
837.89 s
[algebraic-graphs] OK: Axioms of preorder graphs
837.89 s
[algebraic-graphs] OK: path xs == (clique xs :: PreorderRelation Int)
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation ============
837.89 s
[algebraic-graphs] OK: Axioms of undirected graphs
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.consistent ============
837.89 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] OK: consistent empty == True
837.89 s
[algebraic-graphs] OK: consistent (vertex x) == True
837.89 s
[algebraic-graphs] OK: consistent (overlay x y) == True
837.89 s
[algebraic-graphs] OK: consistent (connect x y) == True
837.89 s
[algebraic-graphs] OK: consistent (edge x y) == True
837.89 s
[algebraic-graphs] OK: consistent (edges xs) == True
837.89 s
[algebraic-graphs] OK: consistent (stars xs) == True
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.Show ============
837.89 s
[algebraic-graphs] OK: show (empty ) == "empty"
837.89 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
837.89 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
837.89 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
837.89 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
837.89 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
837.89 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
837.89 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
837.89 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
837.89 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
837.89 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
837.89 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.toSymmetric ============
837.89 s
[algebraic-graphs] OK: toSymmetric (edge 1 2) == edge 1 2
837.89 s
[algebraic-graphs] OK: toSymmetric . fromSymmetric == id
837.89 s
[algebraic-graphs] OK: fromSymmetric . toSymmetric == symmetricClosure
837.89 s
[algebraic-graphs] OK: vertexCount . toSymmetric == vertexCount
837.89 s
[algebraic-graphs] OK: (*2) . edgeCount . toSymmetric >= edgeCount
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.fromSymmetric ============
837.89 s
[algebraic-graphs] OK: fromSymmetric (edge 1 2) == edges [(1,2), (2,1)]
837.89 s
[algebraic-graphs] OK: vertexCount . fromSymmetric == vertexCount
837.89 s
[algebraic-graphs] OK: edgeCount . fromSymmetric <= (*2) . edgeCount
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.Ord ============
837.89 s
[algebraic-graphs] OK: vertex 1 < vertex 2
837.89 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
837.89 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
837.89 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
837.89 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
837.89 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
837.89 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
837.89 s
[algebraic-graphs] OK: x <= x + y
837.89 s
[algebraic-graphs] OK: x + y <= x * y
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.empty ============
837.89 s
[algebraic-graphs] OK: isEmpty empty == True
837.89 s
[algebraic-graphs] OK: hasVertex x empty == False
837.89 s
[algebraic-graphs] OK: vertexCount empty == 0
837.89 s
[algebraic-graphs] OK: edgeCount empty == 0
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.vertex ============
837.89 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
837.89 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
837.89 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
837.89 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.edge ============
837.89 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
837.89 s
[algebraic-graphs] OK: edge x y == edge y x
837.89 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
837.89 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
837.89 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
837.89 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
837.89 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.overlay ============
837.89 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
837.89 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
837.89 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
837.89 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
837.89 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
837.89 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
837.89 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
837.89 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.connect ============
837.89 s
[algebraic-graphs] OK: connect x y == connect y x
837.89 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
837.89 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
837.89 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
837.89 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
837.89 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
837.89 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
837.89 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
837.89 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
837.89 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
837.89 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.vertices ============
837.89 s
[algebraic-graphs] OK: vertices [] == empty
837.89 s
[algebraic-graphs] OK: vertices [x] == vertex x
837.89 s
[algebraic-graphs] OK: vertices == overlays . map vertex
837.89 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
837.89 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
837.89 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.edges ============
837.89 s
[algebraic-graphs] OK: edges [] == empty
837.89 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
837.89 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
837.89 s
[algebraic-graphs]
837.89 s
[algebraic-graphs] ============ Symmetric.Relation.overlays ============
837.89 s
[algebraic-graphs] OK: overlays [] == empty
847.40 s
[algebraic-graphs] OK: overlays [x] == x
847.43 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
847.43 s
[algebraic-graphs] OK: overlays == foldr overlay empty
847.43 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
847.43 s
[algebraic-graphs]
847.43 s
[algebraic-graphs] ============ Symmetric.Relation.connects ============
847.43 s
[algebraic-graphs] OK: connects [] == empty
847.43 s
[algebraic-graphs] OK: connects [x] == x
847.43 s
[algebraic-graphs] OK: connects [x,y] == connect x y
847.43 s
[algebraic-graphs] OK: connects == foldr connect empty
847.43 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
847.43 s
[algebraic-graphs] OK: connects == connects . reverse
847.43 s
[algebraic-graphs]
847.43 s
[algebraic-graphs] ============ Symmetric.Relation.isSubgraphOf ============
847.43 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
847.43 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
847.43 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
847.43 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
847.43 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
847.43 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
847.43 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
847.43 s
[algebraic-graphs]
847.43 s
[algebraic-graphs] ============ Symmetric.Relation.toGraph et al. ============
847.43 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
847.43 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
847.43 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
847.43 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
847.43 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
847.43 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
847.43 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
847.43 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
847.43 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
847.43 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
847.43 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
847.43 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
847.43 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
847.43 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
847.43 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
847.43 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
847.43 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
847.43 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
847.43 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
847.43 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
847.43 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
847.43 s
[algebraic-graphs]
847.43 s
[algebraic-graphs] ============ Symmetric.Relation.isEmpty ============
847.43 s
[algebraic-graphs] OK: isEmpty empty == True
847.43 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
847.43 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
847.43 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
847.43 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
847.43 s
[algebraic-graphs]
847.43 s
[algebraic-graphs] ============ Symmetric.Relation.hasVertex ============
847.43 s
[algebraic-graphs] OK: hasVertex x empty == False
847.43 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
847.44 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.hasEdge ============
847.44 s
[algebraic-graphs] OK: hasEdge x y empty == False
847.44 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
847.44 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
847.44 s
[algebraic-graphs] OK: hasEdge x y (edge y x) == True
847.44 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
847.44 s
[algebraic-graphs] OK: hasEdge x y == elem (min x y, max x y) . edgeList
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.vertexCount ============
847.44 s
[algebraic-graphs] OK: vertexCount empty == 0
847.44 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
847.44 s
[algebraic-graphs] OK: vertexCount == length . vertexList
847.44 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.edgeCount ============
847.44 s
[algebraic-graphs] OK: edgeCount empty == 0
847.44 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
847.44 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
847.44 s
[algebraic-graphs] OK: edgeCount == length . edgeList
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.vertexList ============
847.44 s
[algebraic-graphs] OK: vertexList empty == []
847.44 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
847.44 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.vertexSet ============
847.44 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
847.44 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
847.44 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.vertexIntSet ============
847.44 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
847.44 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
847.44 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
847.44 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.edgeList ============
847.44 s
[algebraic-graphs] OK: edgeList empty == []
847.44 s
[algebraic-graphs] OK: edgeList (vertex x) == []
847.44 s
[algebraic-graphs] OK: edgeList (edge x y) == [(min x y, max y x)]
847.44 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(1,2), (2,3)]
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.edgeSet ============
847.44 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
847.44 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
847.44 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (min x y, max x y)
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.adjacencyList ============
847.44 s
[algebraic-graphs] OK: adjacencyList empty == []
847.44 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
847.44 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [1])]
847.44 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, [2]), (2, [1,3]), (3, [2])]
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.neighbours ============
847.44 s
[algebraic-graphs] OK: neighbours x empty == Set.empty
847.44 s
[algebraic-graphs] OK: neighbours x (vertex x) == Set.empty
847.44 s
[algebraic-graphs] OK: neighbours x (edge x y) == Set.fromList [y]
847.44 s
[algebraic-graphs] OK: neighbours y (edge x y) == Set.fromList [x]
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.path ============
847.44 s
[algebraic-graphs] OK: path [] == empty
847.44 s
[algebraic-graphs] OK: path [x] == vertex x
847.44 s
[algebraic-graphs] OK: path [x,y] == edge x y
847.44 s
[algebraic-graphs] OK: path == path . reverse
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.circuit ============
847.44 s
[algebraic-graphs] OK: circuit [] == empty
847.44 s
[algebraic-graphs] OK: circuit [x] == edge x x
847.44 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
847.44 s
[algebraic-graphs] OK: circuit == circuit . reverse
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.clique ============
847.44 s
[algebraic-graphs] OK: clique [] == empty
847.44 s
[algebraic-graphs] OK: clique [x] == vertex x
847.44 s
[algebraic-graphs] OK: clique [x,y] == edge x y
847.44 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
847.44 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
847.44 s
[algebraic-graphs] OK: clique == clique . reverse
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.biclique ============
847.44 s
[algebraic-graphs] OK: biclique [] [] == empty
847.44 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
847.44 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
847.44 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
847.44 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.star ============
847.44 s
[algebraic-graphs] OK: star x [] == vertex x
847.44 s
[algebraic-graphs] OK: star x [y] == edge x y
847.44 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
847.44 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.stars ============
847.44 s
[algebraic-graphs] OK: stars [] == empty
847.44 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
847.44 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
847.44 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
847.44 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
847.44 s
[algebraic-graphs] OK: stars . adjacencyList == id
847.44 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.tree ============
847.44 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
847.44 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
847.44 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
847.44 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
847.44 s
[algebraic-graphs]
847.44 s
[algebraic-graphs] ============ Symmetric.Relation.forest ============
847.44 s
[algebraic-graphs] OK: forest [] == empty
853.12 s
[algebraic-graphs] OK: forest [x] == tree x
853.12 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
853.16 s
[algebraic-graphs] OK: forest == overlays . map tree
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Symmetric.Relation.removeVertex ============
853.16 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
853.16 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
853.16 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
853.16 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
853.16 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Symmetric.Relation.removeEdge ============
853.16 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
853.16 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
853.16 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
853.16 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
853.16 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
853.16 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Symmetric.Relation.replaceVertex ============
853.16 s
[algebraic-graphs] OK: replaceVertex x x == id
853.16 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
853.16 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Symmetric.Relation.mergeVertices ============
853.16 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
853.16 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
853.16 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
853.16 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Symmetric.Relation.gmap ============
853.16 s
[algebraic-graphs] OK: gmap f empty == empty
853.16 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
853.16 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
853.16 s
[algebraic-graphs] OK: gmap id == id
853.16 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Symmetric.Relation.induce ============
853.16 s
[algebraic-graphs] OK: induce (const True ) x == x
853.16 s
[algebraic-graphs] OK: induce (const False) x == empty
853.16 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
853.16 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
853.16 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Symmetric.Relation.induceJust ============
853.16 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
853.16 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
853.16 s
[algebraic-graphs] OK: induceJust . gmap Just == id
853.16 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Example.Todo (Holiday) ============
853.16 s
[algebraic-graphs] OK: A todo list is semantically Maybe [a]
853.16 s
[algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
853.16 s
[algebraic-graphs] OK: The connect operator (*) adds dependency between items
853.16 s
[algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
853.16 s
[algebraic-graphs] OK: Introduce item priority to schedule the todo list
853.16 s
[algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Example.Todo (Commandline) ============
853.16 s
[algebraic-graphs] OK: The pull connect operator maintains command line semantics
853.16 s
[algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
853.16 s
[algebraic-graphs] OK: The usual connect operator breaks semantics
853.16 s
[algebraic-graphs] OK: Transform command lines by adding optimisation flag
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Typed ============
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Typed.fromAdjacencyMap ============
853.16 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
853.16 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
853.16 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
853.16 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
853.16 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
853.16 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
853.16 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
853.16 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Typed.dfsForest ============
853.16 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
853.16 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
853.16 s
[algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
853.16 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
853.16 s
[algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
853.16 s
[algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
853.16 s
[algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Typed.dfsForestFrom ============
853.16 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
853.16 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
853.16 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
853.16 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
853.16 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
853.16 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
853.16 s
[algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
853.16 s
[algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
853.16 s
[algebraic-graphs] OK: dfsForestFrom % x $ [] == []
853.16 s
[algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Typed.dfs ============
853.16 s
[algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
853.16 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
853.16 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
853.16 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
853.16 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
853.16 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
853.16 s
[algebraic-graphs] OK: dfs % x $ [] == []
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
853.16 s
[algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Typed.topSort ============
853.16 s
[algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
853.16 s
[algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected ============
853.16 s
[algebraic-graphs] OK: Axioms of undirected graphs
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected.Show ============
853.16 s
[algebraic-graphs] OK: show (empty ) == "empty"
853.16 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
853.16 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
853.16 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
853.16 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
853.16 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
853.16 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
853.16 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
853.16 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
853.16 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
853.16 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
853.16 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected.toUndirected ============
853.16 s
[algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
853.16 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
853.16 s
[algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
853.16 s
[algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
853.16 s
[algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
853.16 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
853.16 s
[algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
853.16 s
[algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected.complement ================
853.16 s
[algebraic-graphs] OK: complement empty == empty
853.16 s
[algebraic-graphs] OK: complement (vertex x) == vertex x
853.16 s
[algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
853.16 s
[algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
853.16 s
[algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
853.16 s
[algebraic-graphs] OK: complement . complement == id
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected.Ord ============
853.16 s
[algebraic-graphs] OK: vertex 1 < vertex 2
853.16 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
853.16 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
853.16 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
853.16 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
853.16 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
853.16 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
853.16 s
[algebraic-graphs] OK: x <= x + y
853.16 s
[algebraic-graphs] OK: x + y <= x * y
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected.empty ============
853.16 s
[algebraic-graphs] OK: isEmpty empty == True
853.16 s
[algebraic-graphs] OK: hasVertex x empty == False
853.16 s
[algebraic-graphs] OK: vertexCount empty == 0
853.16 s
[algebraic-graphs] OK: edgeCount empty == 0
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected.vertex ============
853.16 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
853.16 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
853.16 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
853.16 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
853.16 s
[algebraic-graphs]
853.16 s
[algebraic-graphs] ============ Graph.Undirected.edge ============
853.16 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
853.16 s
[algebraic-graphs] OK: edge x y == edge y x
860.23 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
860.23 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
860.23 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
860.27 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
860.27 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.overlay ============
860.27 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
860.27 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
860.27 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
860.27 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
860.27 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
860.27 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
860.27 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
860.27 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.connect ============
860.27 s
[algebraic-graphs] OK: connect x y == connect y x
860.27 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
860.27 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
860.27 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
860.27 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
860.27 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
860.27 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
860.27 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
860.27 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
860.27 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
860.27 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.vertices ============
860.27 s
[algebraic-graphs] OK: vertices [] == empty
860.27 s
[algebraic-graphs] OK: vertices [x] == vertex x
860.27 s
[algebraic-graphs] OK: vertices == overlays . map vertex
860.27 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
860.27 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
860.27 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.edges ============
860.27 s
[algebraic-graphs] OK: edges [] == empty
860.27 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
860.27 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.overlays ============
860.27 s
[algebraic-graphs] OK: overlays [] == empty
860.27 s
[algebraic-graphs] OK: overlays [x] == x
860.27 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
860.27 s
[algebraic-graphs] OK: overlays == foldr overlay empty
860.27 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.connects ============
860.27 s
[algebraic-graphs] OK: connects [] == empty
860.27 s
[algebraic-graphs] OK: connects [x] == x
860.27 s
[algebraic-graphs] OK: connects [x,y] == connect x y
860.27 s
[algebraic-graphs] OK: connects == foldr connect empty
860.27 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
860.27 s
[algebraic-graphs] OK: connects == connects . reverse
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
860.27 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
860.27 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
860.27 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
860.27 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
860.27 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
860.27 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
860.27 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.path ============
860.27 s
[algebraic-graphs] OK: path [] == empty
860.27 s
[algebraic-graphs] OK: path [x] == vertex x
860.27 s
[algebraic-graphs] OK: path [x,y] == edge x y
860.27 s
[algebraic-graphs] OK: path == path . reverse
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.circuit ============
860.27 s
[algebraic-graphs] OK: circuit [] == empty
860.27 s
[algebraic-graphs] OK: circuit [x] == edge x x
860.27 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
860.27 s
[algebraic-graphs] OK: circuit == circuit . reverse
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.clique ============
860.27 s
[algebraic-graphs] OK: clique [] == empty
860.27 s
[algebraic-graphs] OK: clique [x] == vertex x
860.27 s
[algebraic-graphs] OK: clique [x,y] == edge x y
860.27 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
860.27 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
860.27 s
[algebraic-graphs] OK: clique == clique . reverse
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.biclique ============
860.27 s
[algebraic-graphs] OK: biclique [] [] == empty
860.27 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
860.27 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
860.27 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
860.27 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.star ============
860.27 s
[algebraic-graphs] OK: star x [] == vertex x
860.27 s
[algebraic-graphs] OK: star x [y] == edge x y
860.27 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
860.27 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.stars ============
860.27 s
[algebraic-graphs] OK: stars [] == empty
860.27 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
860.27 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
860.27 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
860.27 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
860.27 s
[algebraic-graphs] OK: stars . adjacencyList == id
860.27 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.tree ============
860.27 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
860.27 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
860.27 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
860.27 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.forest ============
860.27 s
[algebraic-graphs] OK: forest [] == empty
860.27 s
[algebraic-graphs] OK: forest [x] == tree x
860.27 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
860.27 s
[algebraic-graphs] OK: forest == overlays . map tree
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.removeVertex ============
860.27 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
860.27 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
860.27 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
860.27 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
860.27 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.removeEdge ============
860.27 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
860.27 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
860.27 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
860.27 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
860.27 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
860.27 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
860.27 s
[algebraic-graphs] OK: replaceVertex x x == id
860.27 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
860.27 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
860.27 s
[algebraic-graphs]
860.27 s
[algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
860.27 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
860.28 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
860.28 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
860.28 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
860.28 s
[algebraic-graphs]
860.28 s
[algebraic-graphs] ============ Graph.Undirected.gmap ============
860.28 s
[algebraic-graphs] OK: gmap f empty == empty
860.28 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
860.28 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
860.28 s
[algebraic-graphs] OK: gmap id == id
860.28 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
860.28 s
[algebraic-graphs]
860.28 s
[algebraic-graphs] ============ Graph.Undirected.induce ============
860.28 s
[algebraic-graphs] OK: induce (const True ) x == x
860.28 s
[algebraic-graphs] OK: induce (const False) x == empty
860.28 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
860.28 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
860.28 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
860.28 s
[algebraic-graphs]
860.28 s
[algebraic-graphs] ============ Graph.Undirected.induceJust ============
860.28 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
860.28 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
860.28 s
[algebraic-graphs] OK: induceJust . gmap Just == id
860.28 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
860.28 s
[algebraic-graphs] Test suite main: PASS
860.28 s
[algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
860.28 s
[algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
860.28 s
[algebraic-graphs] checkPhase completed in 1 minutes 34 seconds
860.28 s
[algebraic-graphs] Phase: haddockPhase
860.40 s
[algebraic-graphs] Preprocessing library for algebraic-graphs-0.7..
860.41 s
[algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7..
860.45 s
[algebraic-graphs] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
860.72 s
[algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
860.80 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
860.84 s
[algebraic-graphs] Warning: 'nub' is out of scope.
860.84 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
860.84 s
[algebraic-graphs] Warning: 'sort' is out of scope.
860.84 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
860.84 s
[algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
860.84 s
[algebraic-graphs] Missing documentation for:
860.84 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
860.93 s
[algebraic-graphs] Warning: 'IsList' is out of scope.
860.93 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
860.93 s
[algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
861.01 s
[algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
861.09 s
[algebraic-graphs] Warning: 'mplus' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] Warning: 'vertexCount' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] Warning: 'hasVertex' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] Warning: 'vertexSet' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] Warning: 'edgeList' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] Warning: 'box' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] Warning: 'edgeCount' is out of scope.
861.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.09 s
[algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
861.21 s
[algebraic-graphs] Warning: 'nub' is out of scope.
861.21 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.21 s
[algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
861.28 s
[algebraic-graphs] Warning: 'isRight' is out of scope.
861.28 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.28 s
[algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
861.38 s
[algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
861.53 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
861.53 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.53 s
[algebraic-graphs] Warning: 'empty' is out of scope.
861.53 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.53 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
861.53 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.53 s
[algebraic-graphs] Warning: 'edges' is out of scope.
861.53 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.53 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
861.53 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.53 s
[algebraic-graphs] Warning: 'stars' is out of scope.
861.53 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.53 s
[algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
861.59 s
[algebraic-graphs] Warning: 'nub' is out of scope.
861.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.59 s
[algebraic-graphs] Warning: 'sort' is out of scope.
861.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.59 s
[algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
861.59 s
[algebraic-graphs] Missing documentation for:
861.59 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
861.64 s
[algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
861.68 s
[algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
861.71 s
[algebraic-graphs]
861.71 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning: [ -Wtype-equality-requires-operators ]
861.71 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
861.71 s
[algebraic-graphs] will become an error in a future GHC release.
861.71 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
861.71 s
[algebraic-graphs] |
861.71 s
[algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
861.71 s
[algebraic-graphs] | ^
861.71 s
[algebraic-graphs]
861.71 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning: [ -Wtype-equality-requires-operators ]
861.71 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
861.71 s
[algebraic-graphs] will become an error in a future GHC release.
861.71 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
861.71 s
[algebraic-graphs] |
861.71 s
[algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
861.71 s
[algebraic-graphs] | ^
861.71 s
[algebraic-graphs]
861.71 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning: [ -Wtype-equality-requires-operators ]
861.71 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
861.71 s
[algebraic-graphs] will become an error in a future GHC release.
861.71 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
861.71 s
[algebraic-graphs] |
861.71 s
[algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
861.71 s
[algebraic-graphs] | ^
861.71 s
[algebraic-graphs]
861.71 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning: [ -Wtype-equality-requires-operators ]
861.71 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
861.71 s
[algebraic-graphs] will become an error in a future GHC release.
861.71 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
861.71 s
[algebraic-graphs] |
861.71 s
[algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
861.71 s
[algebraic-graphs] | ^
861.71 s
[algebraic-graphs]
861.71 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning: [ -Wtype-equality-requires-operators ]
861.71 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
861.71 s
[algebraic-graphs] will become an error in a future GHC release.
861.71 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
861.71 s
[algebraic-graphs] |
861.71 s
[algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
861.71 s
[algebraic-graphs] | ^
861.71 s
[algebraic-graphs]
861.72 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning: [ -Wtype-equality-requires-operators ]
861.72 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
861.72 s
[algebraic-graphs] will become an error in a future GHC release.
861.72 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
861.72 s
[algebraic-graphs] |
861.72 s
[algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
861.72 s
[algebraic-graphs] | ^
861.72 s
[algebraic-graphs]
861.72 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning: [ -Wtype-equality-requires-operators ]
861.72 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
861.72 s
[algebraic-graphs] will become an error in a future GHC release.
861.72 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
861.72 s
[algebraic-graphs] |
861.72 s
[algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
861.72 s
[algebraic-graphs] | ^
861.83 s
[algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
861.83 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.83 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
861.89 s
[algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
861.96 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
861.96 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
861.96 s
[algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
862.04 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
862.21 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
862.24 s
[algebraic-graphs]
862.24 s
[algebraic-graphs] src/Algebra/Graph/Labelled.hs:74:10: warning: [ -Wredundant-constraints ]
862.24 s
[algebraic-graphs] • Redundant constraint: Eq e
862.24 s
[algebraic-graphs] • In the instance declaration for ‘Ord (Graph e a)’
862.24 s
[algebraic-graphs] |
862.24 s
[algebraic-graphs] 74 | instance (Eq e, Monoid e, Ord a, Ord e) => Ord (Graph e a) where
862.24 s
[algebraic-graphs] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
862.25 s
[algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
862.26 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
862.28 s
[algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
862.28 s
[algebraic-graphs]
862.28 s
[algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning: [ -Wtype-equality-requires-operators ]
862.28 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
862.28 s
[algebraic-graphs] will become an error in a future GHC release.
862.28 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
862.28 s
[algebraic-graphs] |
862.28 s
[algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
862.28 s
[algebraic-graphs] | ^
862.29 s
[algebraic-graphs] Warning: 'Graph' is out of scope.
862.29 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
862.29 s
[algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
862.30 s
[algebraic-graphs]
862.30 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning: [ -Wtype-equality-requires-operators ]
862.30 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
862.30 s
[algebraic-graphs] will become an error in a future GHC release.
862.30 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
862.30 s
[algebraic-graphs] |
862.30 s
[algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
862.30 s
[algebraic-graphs] | ^
862.30 s
[algebraic-graphs]
862.30 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning: [ -Wtype-equality-requires-operators ]
862.30 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
862.30 s
[algebraic-graphs] will become an error in a future GHC release.
862.30 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
862.30 s
[algebraic-graphs] |
862.30 s
[algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
862.30 s
[algebraic-graphs] | ^
862.34 s
[algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
862.38 s
[algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
862.40 s
[algebraic-graphs] Warning: 'Transitive' is out of scope.
862.40 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
862.40 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
862.41 s
[algebraic-graphs] Warning: 'Reflexive' is out of scope.
862.41 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
862.41 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
862.42 s
[algebraic-graphs] Warning: 'Preorder' is out of scope.
862.42 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
862.42 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
862.43 s
[algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
862.43 s
[algebraic-graphs] Missing documentation for:
862.43 s
[algebraic-graphs] Module header
862.43 s
[algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
862.43 s
[algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:41)
862.43 s
[algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:22)
862.43 s
[algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:26)
862.43 s
[algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:34)
862.43 s
[algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:38)
862.43 s
[algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:30)
862.45 s
[algebraic-graphs] Warning: 'array' is out of scope.
862.45 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
862.45 s
[algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
862.45 s
[algebraic-graphs] Missing documentation for:
862.45 s
[algebraic-graphs] scc (src/Data/Graph/Typed.hs:191)
862.68 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled: could not find link destinations for:
862.68 s
[algebraic-graphs]
862.68 s
[algebraic-graphs] - Algebra.Graph.Labelled.Focus
865.54 s
[algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs/index.html,
865.54 s
[algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
865.66 s
[algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7..
865.66 s
[algebraic-graphs] Phase: installPhase
865.67 s
[algebraic-graphs] Installing library in /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/lib/ghc-9.4.8/x86_64-linux-ghc-9.4.8/algebraic-graphs-0.7-HAx3uQBsFBrCFjzVNVlr0F
866.38 s
[algebraic-graphs] Phase: fixupPhase
866.40 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7
866.42 s
[algebraic-graphs] shrinking /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/lib/ghc-9.4.8/x86_64-linux-ghc-9.4.8/libHSalgebraic-graphs-0.7-HAx3uQBsFBrCFjzVNVlr0F-ghc9.4.8.so
866.43 s
[algebraic-graphs] checking for references to /build/ in /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7...
866.48 s
[algebraic-graphs] patching script interpreter paths in /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7
866.49 s
[algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/lib
866.76 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/bd0rv8qd20dfba7jwqs33dcw23plc5jq-algebraic-graphs-0.7-doc
866.77 s
[algebraic-graphs] checking for references to /build/ in /nix/store/bd0rv8qd20dfba7jwqs33dcw23plc5jq-algebraic-graphs-0.7-doc...
866.81 s
[algebraic-graphs] patching script interpreter paths in /nix/store/bd0rv8qd20dfba7jwqs33dcw23plc5jq-algebraic-graphs-0.7-doc
866.96 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7 /nix/store/bd0rv8qd20dfba7jwqs33dcw23plc5jq-algebraic-graphs-0.7-doc
867.51 s
[post-build-hook] Pushing 2 paths (37 are already present) using zstd to cache sellout ⏳
867.51 s
[post-build-hook]
867.90 s
[post-build-hook] Pushing /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7 (24.72 MiB)
868.01 s
[post-build-hook] Pushing /nix/store/bd0rv8qd20dfba7jwqs33dcw23plc5jq-algebraic-graphs-0.7-doc (11.26 MiB)
869.74 s
[post-build-hook]
869.74 s
[post-build-hook] All done.
869.76 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7 /nix/store/bd0rv8qd20dfba7jwqs33dcw23plc5jq-algebraic-graphs-0.7-doc
869.80 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
869.81 s
[post-build-hook] copying 2 paths...
869.81 s
[post-build-hook] copying path '/nix/store/bd0rv8qd20dfba7jwqs33dcw23plc5jq-algebraic-graphs-0.7-doc' to 'https://cache.nix-ci.com'...
871.35 s
[post-build-hook] copying path '/nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
876.23 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
876.47 s
[post-build-hook] copying 1 paths...
876.47 s
[post-build-hook] copying path '/nix/store/pkxsn9c82g3jd25gsvx2jpg7w9nl19qf-algebraic-graphs-0.7.drv' to 'https://cache.nix-ci.com'...
876.71 s
Progress: 6 of 10 built, 152 of 152 downloaded from cache
876.77 s
Building ghc-9.4.8-with-packages
876.84 s
[ghc-9.4.8-with-packages] /nix/store/iwqw5xnc7zqlhkh89a1v3r3jmwkfja1c-doctest-0.24.2/nix-support:
876.84 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.86 s
[ghc-9.4.8-with-packages] /nix/store/aba6vbkwdrz87az76asqhggfn865lfls-ghc-compat-plugin-0.1.0.1/nix-support:
876.86 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.86 s
[ghc-9.4.8-with-packages] /nix/store/jnriapj24daab47wfpylsbz3sw82mrm5-hedgehog-1.5/nix-support:
876.86 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.86 s
[ghc-9.4.8-with-packages] /nix/store/jnriapj24daab47wfpylsbz3sw82mrm5-hedgehog-1.5/nix-support:
876.86 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.87 s
[ghc-9.4.8-with-packages] /nix/store/qwpjg0whfp59bvjbbd3zj7d7av19frrj-Cabal-3.12.1.0/nix-support:
876.87 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.90 s
[ghc-9.4.8-with-packages] /nix/store/9awxkcf7mf8r2p73q0p3jwkkz5jhxk1j-cabal-doctest-1.0.12/nix-support:
876.90 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.92 s
[ghc-9.4.8-with-packages] /nix/store/nc67nabvnkd3ax812zzkp7imag2axafb-temporary-1.3/nix-support:
876.92 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.92 s
[ghc-9.4.8-with-packages] /nix/store/nc67nabvnkd3ax812zzkp7imag2axafb-temporary-1.3/nix-support:
876.92 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.92 s
[ghc-9.4.8-with-packages] /nix/store/kj3xbib9gbydn80c6pa58jw0diwy299l-ansi-terminal-1.1.3/nix-support:
876.92 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.93 s
[ghc-9.4.8-with-packages] /nix/store/kj3xbib9gbydn80c6pa58jw0diwy299l-ansi-terminal-1.1.3/nix-support:
876.93 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.93 s
[ghc-9.4.8-with-packages] /nix/store/lnpm1wipjx78xjmaxv1z5j8dd4a1symh-async-2.2.5/nix-support:
876.93 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.93 s
[ghc-9.4.8-with-packages] /nix/store/lnpm1wipjx78xjmaxv1z5j8dd4a1symh-async-2.2.5/nix-support:
876.93 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.93 s
[ghc-9.4.8-with-packages] /nix/store/ma738ihzlsdhviinksypvlawhgvm4l27-barbies-2.1.1.0/nix-support:
876.93 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.94 s
[ghc-9.4.8-with-packages] /nix/store/ma738ihzlsdhviinksypvlawhgvm4l27-barbies-2.1.1.0/nix-support:
876.94 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.94 s
[ghc-9.4.8-with-packages] /nix/store/742z4r79i4qmrvya67kiqhl548nzdf3m-concurrent-output-1.10.21/nix-support:
876.94 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.95 s
[ghc-9.4.8-with-packages] /nix/store/742z4r79i4qmrvya67kiqhl548nzdf3m-concurrent-output-1.10.21/nix-support:
876.95 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.95 s
[ghc-9.4.8-with-packages] /nix/store/i4ldl1p4vwmpp2wbgi8wdhnff23s8qa5-lifted-async-0.10.2.7/nix-support:
876.95 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.95 s
[ghc-9.4.8-with-packages] /nix/store/i4ldl1p4vwmpp2wbgi8wdhnff23s8qa5-lifted-async-0.10.2.7/nix-support:
876.95 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.95 s
[ghc-9.4.8-with-packages] /nix/store/gw4glgrkcallqjhqkdl05n6mgi5i6hrl-mmorph-1.2.1/nix-support:
876.95 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.96 s
[ghc-9.4.8-with-packages] /nix/store/gw4glgrkcallqjhqkdl05n6mgi5i6hrl-mmorph-1.2.1/nix-support:
876.96 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.96 s
[ghc-9.4.8-with-packages] /nix/store/vr4aizxdpc8ac8lgnznvgv4wrj6m1966-monad-control-1.0.3.1/nix-support:
876.96 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.96 s
[ghc-9.4.8-with-packages] /nix/store/vr4aizxdpc8ac8lgnznvgv4wrj6m1966-monad-control-1.0.3.1/nix-support:
876.96 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.96 s
[ghc-9.4.8-with-packages] /nix/store/sv8ac9brw0kq58zasvn25kb01wmvg3hg-pretty-show-1.10/nix-support:
876.96 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.96 s
[ghc-9.4.8-with-packages] /nix/store/sv8ac9brw0kq58zasvn25kb01wmvg3hg-pretty-show-1.10/nix-support:
876.96 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.96 s
[ghc-9.4.8-with-packages] /nix/store/ii90bl7i0ixvvyynac5mca5f5j7f0a9r-primitive-0.9.1.0/nix-support:
876.96 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.97 s
[ghc-9.4.8-with-packages] /nix/store/ii90bl7i0ixvvyynac5mca5f5j7f0a9r-primitive-0.9.1.0/nix-support:
876.97 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.97 s
[ghc-9.4.8-with-packages] /nix/store/zgrpvklwnz2bmffl035si31i2ccw75yq-random-1.2.1.3/nix-support:
876.97 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.97 s
[ghc-9.4.8-with-packages] /nix/store/zgrpvklwnz2bmffl035si31i2ccw75yq-random-1.2.1.3/nix-support:
876.97 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.97 s
[ghc-9.4.8-with-packages] /nix/store/0ibwnsmddvmk8x5iay5xxj7ajf0mdgcb-resourcet-1.3.0/nix-support:
876.97 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.98 s
[ghc-9.4.8-with-packages] /nix/store/0ibwnsmddvmk8x5iay5xxj7ajf0mdgcb-resourcet-1.3.0/nix-support:
876.98 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.98 s
[ghc-9.4.8-with-packages] /nix/store/fikzg289cm63ny4j3f9rsijf0bvf28nw-safe-exceptions-0.1.7.4/nix-support:
876.98 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.98 s
[ghc-9.4.8-with-packages] /nix/store/fikzg289cm63ny4j3f9rsijf0bvf28nw-safe-exceptions-0.1.7.4/nix-support:
876.98 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.98 s
[ghc-9.4.8-with-packages] /nix/store/ivxwj8agwmpzhd6izc4x43a1axi6w5d4-transformers-base-0.4.6/nix-support:
876.98 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.98 s
[ghc-9.4.8-with-packages] /nix/store/ivxwj8agwmpzhd6izc4x43a1axi6w5d4-transformers-base-0.4.6/nix-support:
876.98 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.99 s
[ghc-9.4.8-with-packages] /nix/store/nl85bjrjxv9j580rbljrxh93zzfbd108-wl-pprint-annotated-0.1.0.1/nix-support:
876.99 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.99 s
[ghc-9.4.8-with-packages] /nix/store/nl85bjrjxv9j580rbljrxh93zzfbd108-wl-pprint-annotated-0.1.0.1/nix-support:
876.99 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
876.99 s
[ghc-9.4.8-with-packages] /nix/store/xmpz5r3lk1rxsgyk6y46s2w58ampfr5g-Cabal-syntax-3.12.1.0/nix-support:
876.99 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.01 s
[ghc-9.4.8-with-packages] /nix/store/xmpz5r3lk1rxsgyk6y46s2w58ampfr5g-Cabal-syntax-3.12.1.0/nix-support:
877.01 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.02 s
[ghc-9.4.8-with-packages] /nix/store/ia9jprsrywhzs37iqjcz1pn2iy58y4lw-ansi-terminal-types-1.1.3/nix-support:
877.02 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.03 s
[ghc-9.4.8-with-packages] /nix/store/ia9jprsrywhzs37iqjcz1pn2iy58y4lw-ansi-terminal-types-1.1.3/nix-support:
877.03 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.04 s
[ghc-9.4.8-with-packages] /nix/store/35lsnsldhvy7y1i21v86kns2ah0hx72c-hashable-1.4.7.0/nix-support:
877.04 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.04 s
[ghc-9.4.8-with-packages] /nix/store/35lsnsldhvy7y1i21v86kns2ah0hx72c-hashable-1.4.7.0/nix-support:
877.04 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.04 s
[ghc-9.4.8-with-packages] /nix/store/zcdz6f0k3aa1j82s8p0prglf1929dqs0-distributive-0.6.2.1/nix-support:
877.04 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.04 s
[ghc-9.4.8-with-packages] /nix/store/zcdz6f0k3aa1j82s8p0prglf1929dqs0-distributive-0.6.2.1/nix-support:
877.04 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.05 s
[ghc-9.4.8-with-packages] /nix/store/d3x3gda2rr1kw1a43zw8nxdk895k4hsi-constraints-0.14.2/nix-support:
877.05 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.05 s
[ghc-9.4.8-with-packages] /nix/store/d3x3gda2rr1kw1a43zw8nxdk895k4hsi-constraints-0.14.2/nix-support:
877.05 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.06 s
[ghc-9.4.8-with-packages] /nix/store/w5z12hdpc93yhrvj7ifvf6rgzh1ljbik-lifted-base-0.2.3.12/nix-support:
877.06 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.06 s
[ghc-9.4.8-with-packages] /nix/store/w5z12hdpc93yhrvj7ifvf6rgzh1ljbik-lifted-base-0.2.3.12/nix-support:
877.06 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.06 s
[ghc-9.4.8-with-packages] /nix/store/j0ff9h4skzj85n7gyq8s7155g6fakm9b-transformers-compat-0.7.2/nix-support:
877.06 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.07 s
[ghc-9.4.8-with-packages] /nix/store/j0ff9h4skzj85n7gyq8s7155g6fakm9b-transformers-compat-0.7.2/nix-support:
877.07 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.07 s
[ghc-9.4.8-with-packages] /nix/store/wjm51pw64gsp5q0hq4yvs22agi7in0c7-splitmix-0.1.3.1/nix-support:
877.07 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.08 s
[ghc-9.4.8-with-packages] /nix/store/wjm51pw64gsp5q0hq4yvs22agi7in0c7-splitmix-0.1.3.1/nix-support:
877.08 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.08 s
[ghc-9.4.8-with-packages] /nix/store/mdd2swfjg0d2sr8jmq1dq0bz8hr97g8d-unliftio-core-0.2.1.0/nix-support:
877.08 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.08 s
[ghc-9.4.8-with-packages] /nix/store/mdd2swfjg0d2sr8jmq1dq0bz8hr97g8d-unliftio-core-0.2.1.0/nix-support:
877.08 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.08 s
[ghc-9.4.8-with-packages] /nix/store/jz7zl0maj20ixq8xrm6xp8vlylbvf4g0-base-orphans-0.9.3/nix-support:
877.08 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.09 s
[ghc-9.4.8-with-packages] /nix/store/jz7zl0maj20ixq8xrm6xp8vlylbvf4g0-base-orphans-0.9.3/nix-support:
877.09 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.09 s
[ghc-9.4.8-with-packages] /nix/store/qgxv995bh9irf0jg9miqsrx61glq39zq-os-string-2.0.8/nix-support:
877.09 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.09 s
[ghc-9.4.8-with-packages] /nix/store/qgxv995bh9irf0jg9miqsrx61glq39zq-os-string-2.0.8/nix-support:
877.09 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.10 s
[ghc-9.4.8-with-packages] /nix/store/w021h6br7mi8p3npc0b1p0aq79gb02sb-tagged-0.8.9/nix-support:
877.10 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.10 s
[ghc-9.4.8-with-packages] /nix/store/w021h6br7mi8p3npc0b1p0aq79gb02sb-tagged-0.8.9/nix-support:
877.10 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.10 s
[ghc-9.4.8-with-packages] /nix/store/9bswyvp3x7ifdb7n4r6xsa7hg70lrd6s-boring-0.2.2/nix-support:
877.10 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.10 s
[ghc-9.4.8-with-packages] /nix/store/9bswyvp3x7ifdb7n4r6xsa7hg70lrd6s-boring-0.2.2/nix-support:
877.10 s
[ghc-9.4.8-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4asr4dcyl5y2ymb38clx5x5fm7cdmp1i-algebraic-graphs-0.7/nix-support/propagated-build-inputs
877.74 s
[ghc-9.4.8-with-packages] Warning: haddock-interfaces: /nix/store/jnriapj24daab47wfpylsbz3sw82mrm5-hedgehog-1.5/share/doc/x86_64-linux-ghc-9.4.8/hedgehog-1.5/html/hedgehog.haddock doesn't exist or isn't a file
877.74 s
[ghc-9.4.8-with-packages] Warning: haddock-html: /nix/store/jnriapj24daab47wfpylsbz3sw82mrm5-hedgehog-1.5/share/doc/x86_64-linux-ghc-9.4.8/hedgehog-1.5/html doesn't exist or isn't a directory
878.70 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/s9gb9l49gyan7rrbq504iq6jsy4cyb86-ghc-9.4.8-with-packages
879.33 s
[post-build-hook] Pushing 1 paths (120 are already present) using zstd to cache sellout ⏳
879.33 s
[post-build-hook]
879.83 s
[post-build-hook] Pushing /nix/store/s9gb9l49gyan7rrbq504iq6jsy4cyb86-ghc-9.4.8-with-packages (4.85 MiB)
881.48 s
[post-build-hook]
881.48 s
[post-build-hook] All done.
881.50 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/s9gb9l49gyan7rrbq504iq6jsy4cyb86-ghc-9.4.8-with-packages
881.58 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
881.75 s
[post-build-hook] copying 1 paths...
881.75 s
[post-build-hook] copying path '/nix/store/s9gb9l49gyan7rrbq504iq6jsy4cyb86-ghc-9.4.8-with-packages' to 'https://cache.nix-ci.com'...
882.80 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
883.08 s
[post-build-hook] copying 1 paths...
883.08 s
[post-build-hook] copying path '/nix/store/dd9qk6kzaqmn8f762yqlxyzrvpzzisds-ghc-9.4.8-with-packages.drv' to 'https://cache.nix-ci.com'...
883.31 s
Progress: 7 of 9 built, 152 of 152 downloaded from cache
883.40 s
Building ghc-shell-for-packages
883.52 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/6kln287kdq0aa7i4baxk2a23kz5fh21l-ghc-shell-for-packages-0
884.15 s
[post-build-hook] Pushing 1 paths (322 are already present) using zstd to cache sellout ⏳
884.15 s
[post-build-hook]
884.56 s
[post-build-hook] Pushing /nix/store/6kln287kdq0aa7i4baxk2a23kz5fh21l-ghc-shell-for-packages-0 (256.00 B)
885.55 s
[post-build-hook]
885.55 s
[post-build-hook] All done.
885.57 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/6kln287kdq0aa7i4baxk2a23kz5fh21l-ghc-shell-for-packages-0
885.64 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
885.68 s
[post-build-hook] copying 1 paths...
885.68 s
[post-build-hook] copying path '/nix/store/6kln287kdq0aa7i4baxk2a23kz5fh21l-ghc-shell-for-packages-0' to 'https://cache.nix-ci.com'...
886.04 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
886.37 s
[post-build-hook] copying 1 paths...
886.37 s
[post-build-hook] copying path '/nix/store/brdmmm2i6z0j22jd9sfgrh1pkpx6b5z9-ghc-shell-for-packages-0.drv' to 'https://cache.nix-ci.com'...
886.60 s
Progress: 8 of 9 built, 152 of 152 downloaded from cache