build packages.x86_64-linux.ghc9103_all
551.20 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
551.20 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
551.20 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
551.20 s
[algebraic-graphs] OK: x <= x + y
551.20 s
[algebraic-graphs] OK: x + y <= x * y
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ Show (NonEmpty.AdjacencyMap a) ============
551.20 s
[algebraic-graphs] OK: show (1 :: AdjacencyMap Int) == "vertex 1"
551.20 s
[algebraic-graphs] OK: show (1 + 2 :: AdjacencyMap Int) == "vertices1 [1,2]"
551.20 s
[algebraic-graphs] OK: show (1 * 2 :: AdjacencyMap Int) == "edge 1 2"
551.20 s
[algebraic-graphs] OK: show (1 * 2 * 3 :: AdjacencyMap Int) == "edges1 [(1,2),(1,3),(2,3)]"
551.20 s
[algebraic-graphs] OK: show (1 * 2 + 3 :: AdjacencyMap Int) == "overlay (vertex 3) (edge 1 2)"
551.20 s
[algebraic-graphs] OK: show (vertex (-1) :: AdjacencyMap Int) == "vertex (-1)"
551.20 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) :: AdjacencyMap Int) == "vertices1 [-2,-1]"
551.20 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) :: AdjacencyMap Int) == "edge (-1) (-2)"
551.20 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) * vertex (-3) :: AdjacencyMap Int) == "edges1 [(-2,-3),(-1,-3),(-1,-2)]"
551.20 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) + vertex (-3) :: AdjacencyMap Int) == "overlay (vertex (-3)) (edge (-1) (-2))"
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.toNonEmpty ============
551.20 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
551.20 s
[algebraic-graphs] OK: toNonEmpty . fromNonEmpty == Just
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.fromNonEmpty ============
551.20 s
[algebraic-graphs] OK: isEmpty . fromNonEmpty == const False
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertex ============
551.20 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
551.20 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
551.20 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edge ============
551.20 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
551.20 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
551.20 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
551.20 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
551.20 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlay ============
551.20 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
551.20 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
551.20 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
551.20 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
551.20 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
551.20 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
551.20 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connect ============
551.20 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
551.20 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
551.20 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
551.20 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
551.20 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
551.20 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
551.20 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
551.20 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
551.20 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertices1 ============
551.20 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
551.20 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
551.20 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
551.20 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
551.20 s
[algebraic-graphs]
551.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edges1 ============
551.20 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
551.20 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
551.20 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
551.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlays1 ============
554.20 s
[algebraic-graphs] OK: overlays1 [x] == x
554.20 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connects1 ============
554.20 s
[algebraic-graphs] OK: connects1 [x] == x
554.20 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.isSubgraphOf ============
554.20 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
554.20 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
554.20 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
554.20 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasVertex ============
554.20 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasEdge ============
554.20 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
554.20 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
554.20 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
554.20 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexCount ============
554.20 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
554.20 s
[algebraic-graphs] OK: vertexCount x >= 1
554.20 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeCount ============
554.20 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
554.20 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
554.20 s
[algebraic-graphs] OK: edgeCount == length . edgeList
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexList1 ============
554.20 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
554.20 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeList ============
554.20 s
[algebraic-graphs] OK: edgeList (vertex x) == []
554.20 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
554.20 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
554.20 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
554.20 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexSet ============
554.20 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
554.20 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
554.20 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeSet ============
554.20 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
554.20 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
554.20 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.preSet ============
554.20 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
554.20 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
554.20 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.postSet ============
554.20 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
554.20 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
554.20 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.path1 ============
554.20 s
[algebraic-graphs] OK: path1 [x] == vertex x
554.20 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
554.20 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.circuit1 ============
554.20 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
554.20 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
554.20 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.clique1 ============
554.20 s
[algebraic-graphs] OK: clique1 [x] == vertex x
554.20 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
554.20 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
554.20 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
554.20 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.biclique1 ============
554.20 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
554.20 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.star ============
554.20 s
[algebraic-graphs] OK: star x [] == vertex x
554.20 s
[algebraic-graphs] OK: star x [y] == edge x y
554.20 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.stars1 ============
554.20 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
554.20 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
554.20 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
554.20 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
554.20 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.tree ============
554.20 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
554.20 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
554.20 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
554.20 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeVertex1 ============
554.20 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
554.20 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
554.20 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
554.20 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
554.20 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeEdge ============
554.20 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
554.20 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
554.20 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
554.20 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.replaceVertex ============
554.20 s
[algebraic-graphs] OK: replaceVertex x x == id
554.20 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
554.20 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.mergeVertices ============
554.20 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
554.20 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
554.20 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
554.20 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transpose ============
554.20 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
554.20 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
554.20 s
[algebraic-graphs] OK: transpose . transpose == id
554.20 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.gmap ============
554.20 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
554.20 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
554.20 s
[algebraic-graphs] OK: gmap id == id
554.20 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induce1 ============
554.20 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
554.20 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
554.20 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
554.20 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induceJust1 ============
554.20 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
554.20 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
554.20 s
[algebraic-graphs] OK: induceJust1 . gmap Just == Just
554.20 s
[algebraic-graphs] OK: induceJust1 . gmap (\x -> if p x then Just x else Nothing) == induce1 p
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.closure ============
554.20 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
554.20 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
554.20 s
[algebraic-graphs] OK: closure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
554.20 s
[algebraic-graphs] OK: closure (path1 $ nub xs) == reflexiveClosure (clique1 $ nub xs)
554.20 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
554.20 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
554.20 s
[algebraic-graphs] OK: closure . closure == closure
554.20 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.reflexiveClosure ============
554.20 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
554.20 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
554.20 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
554.20 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.symmetricClosure ============
554.20 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
554.20 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges1 [(x,y), (y,x)]
554.20 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
554.20 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transitiveClosure ============
554.20 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
554.20 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
554.20 s
[algebraic-graphs] OK: transitiveClosure (path1 $ nub xs) == clique1 (nub $ xs)
554.20 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ NonEmpty.Graph.============
554.20 s
[algebraic-graphs] OK: Axioms of non-empty graphs
554.20 s
[algebraic-graphs] OK: Theorems of non-empty graphs
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ Ord (NonEmpty.Graph a) ============
554.20 s
[algebraic-graphs] OK: vertex 1 < vertex 2
554.20 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
554.20 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
554.20 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
554.20 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
554.20 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
554.20 s
[algebraic-graphs] OK: x <= x + y
554.20 s
[algebraic-graphs] OK: x + y <= x * y
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ Functor (NonEmpty.Graph a) ============
554.20 s
[algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
554.20 s
[algebraic-graphs] OK: fmap f (edge x y) == edge (f x) (f y)
554.20 s
[algebraic-graphs] OK: fmap id == id
554.20 s
[algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
554.20 s
[algebraic-graphs]
554.20 s
[algebraic-graphs] ============ Monad (NonEmpty.Graph a) ============
554.20 s
[algebraic-graphs] OK: (vertex x >>= f) == f x
555.78 s
[algebraic-graphs] OK: (edge x y >>= f) == connect (f x) (f y)
555.78 s
[algebraic-graphs] OK: (vertices1 xs >>= f) == overlays1 (fmap f xs)
555.78 s
[algebraic-graphs] OK: (x >>= vertex) == x
555.78 s
[algebraic-graphs] OK: ((x >>= f) >>= g) == (x >>= (\y -> (f y) >>= g))
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.toNonEmpty ============
555.78 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
555.78 s
[algebraic-graphs] OK: toNonEmpty (toGraph x) == Just (x :: NonEmpty.Graph a)
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.vertex ============
555.78 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
555.78 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
555.78 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
555.78 s
[algebraic-graphs] OK: size (vertex x) == 1
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.edge ============
555.78 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
555.78 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
555.78 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
555.78 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
555.78 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay ============
555.78 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
555.78 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
555.78 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
555.78 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
555.78 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
555.78 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
555.78 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
555.78 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay1 ============
555.78 s
[algebraic-graphs] OK: overlay1 empty x == x
555.78 s
[algebraic-graphs] OK: x /= empty ==> overlay1 x y == overlay (fromJust $ toNonEmpty x) y
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.connect ============
555.78 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
555.78 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
555.78 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
555.78 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
555.78 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
555.78 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
555.78 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
555.78 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
555.78 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
555.78 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.vertices1 ============
555.78 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
555.78 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
555.78 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
555.78 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.edges1 ============
555.78 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
555.78 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
555.78 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.overlays1 ============
555.78 s
[algebraic-graphs] OK: overlays1 [x] == x
555.78 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.connects1 ============
555.78 s
[algebraic-graphs] OK: connects1 [x] == x
555.78 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.foldg1 ============
555.78 s
[algebraic-graphs] OK: foldg1 vertex overlay connect == id
555.78 s
[algebraic-graphs] OK: foldg1 vertex overlay (flip connect) == transpose
555.78 s
[algebraic-graphs] OK: foldg1 (const 1) (+) (+) == size
555.78 s
[algebraic-graphs] OK: foldg1 (== x) (||) (||) == hasVertex x
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.isSubgraphOf ============
555.78 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
555.78 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
555.78 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
555.78 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.(===) ============
555.78 s
[algebraic-graphs] OK: x === x == True
555.78 s
[algebraic-graphs] OK: x + y === x + y == True
555.78 s
[algebraic-graphs] OK: 1 + 2 === 2 + 1 == False
555.78 s
[algebraic-graphs] OK: x + y === x * y == False
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.size ============
555.78 s
[algebraic-graphs] OK: size (vertex x) == 1
555.78 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
555.78 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
555.78 s
[algebraic-graphs] OK: size x >= 1
555.78 s
[algebraic-graphs] OK: size x >= vertexCount x
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.hasVertex ============
555.78 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.hasEdge ============
555.78 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
555.78 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
555.78 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
555.78 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexCount ============
555.78 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
555.78 s
[algebraic-graphs] OK: vertexCount x >= 1
555.78 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeCount ============
555.78 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
555.78 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
555.78 s
[algebraic-graphs] OK: edgeCount == length . edgeList
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexList1 ============
555.78 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
555.78 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeList ============
555.78 s
[algebraic-graphs] OK: edgeList (vertex x) == []
555.78 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
555.78 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
555.78 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
555.78 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexSet ============
555.78 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
555.78 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
555.78 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeSet ============
555.78 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
555.78 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
555.78 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.path1 ============
555.78 s
[algebraic-graphs] OK: path1 [x] == vertex x
555.78 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
555.78 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.circuit1 ============
555.78 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
555.78 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
555.78 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.clique1 ============
555.78 s
[algebraic-graphs] OK: clique1 [x] == vertex x
555.78 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
555.78 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
555.78 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
555.78 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.biclique1 ============
555.78 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
555.78 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.star ============
555.78 s
[algebraic-graphs] OK: star x [] == vertex x
555.78 s
[algebraic-graphs] OK: star x [y] == edge x y
555.78 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.stars1 ============
555.78 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
555.78 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
555.78 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
555.78 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
555.78 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.tree ============
555.78 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
555.78 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
555.78 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
555.78 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.mesh1 ============
555.78 s
[algebraic-graphs] OK: mesh1 [x] [y] == vertex (x, y)
555.78 s
[algebraic-graphs] OK: mesh1 xs ys == box (path1 xs) (path1 ys)
555.78 s
[algebraic-graphs] OK: mesh1 [1,2,3] ['a', 'b'] == <correct result>
555.78 s
[algebraic-graphs] OK: size (mesh xs ys) == max 1 (3 * length xs * length ys - length xs - length ys -1)
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.torus1 ============
555.78 s
[algebraic-graphs] OK: torus1 [x] [y] == edge (x,y) (x,y)
555.78 s
[algebraic-graphs] OK: torus1 xs ys == box (circuit1 xs) (circuit1 ys)
555.78 s
[algebraic-graphs] OK: torus1 [1,2] ['a', 'b'] == <correct result>
555.78 s
[algebraic-graphs] OK: size (torus1 xs ys) == max 1 (3 * length xs * length ys)
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.removeVertex1 ============
555.78 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
555.78 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
555.78 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
555.78 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
555.78 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.removeEdge ============
555.78 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
555.78 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
555.78 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
555.78 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
555.78 s
[algebraic-graphs] OK: size (removeEdge x y z) <= 3 * size z
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.replaceVertex ============
555.78 s
[algebraic-graphs] OK: replaceVertex x x == id
555.78 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
555.78 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
555.78 s
[algebraic-graphs]
555.78 s
[algebraic-graphs] ============ NonEmpty.Graph.mergeVertices ============
555.78 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
563.54 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
563.54 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
563.57 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
563.57 s
[algebraic-graphs]
563.57 s
[algebraic-graphs] ============ NonEmpty.Graph.splitVertex1 ============
563.58 s
[algebraic-graphs] OK: splitVertex1 x [x] == id
563.58 s
[algebraic-graphs] OK: splitVertex1 x [y] == replaceVertex x y
563.58 s
[algebraic-graphs] OK: splitVertex1 1 [0,1] $ 1 * (2 + 3) == (0 + 1) * (2 + 3)
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ NonEmpty.Graph.transpose ============
563.58 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
563.58 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
563.58 s
[algebraic-graphs] OK: transpose . transpose == id
563.58 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
563.58 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ NonEmpty.Graph.induce1 ============
563.58 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
563.58 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
563.58 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
563.58 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ NonEmpty.Graph.induceJust1 ============
563.58 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
563.58 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
563.58 s
[algebraic-graphs] OK: induceJust1 . fmap Just == Just
563.58 s
[algebraic-graphs] OK: induceJust1 . fmap (\x -> if p x then Just x else Nothing) == induce1 p
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ NonEmpty.Graph.simplify ============
563.58 s
[algebraic-graphs] OK: simplify == id
563.58 s
[algebraic-graphs] OK: size (simplify x) <= size x
563.58 s
[algebraic-graphs] OK: simplify 1 === 1
563.58 s
[algebraic-graphs] OK: simplify (1 + 1) === 1
563.58 s
[algebraic-graphs] OK: simplify (1 + 2 + 1) === 1 + 2
563.58 s
[algebraic-graphs] OK: simplify (1 * 1 * 1) === 1 * 1
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsify ============
563.58 s
[algebraic-graphs] OK: sort . reachable x == sort . rights . reachable (sparsify x) . Right
563.58 s
[algebraic-graphs] OK: vertexCount (sparsify x) <= vertexCount x + size x + 1
563.58 s
[algebraic-graphs] OK: edgeCount (sparsify x) <= 3 * size x
563.58 s
[algebraic-graphs] OK: size (sparsify x) <= 3 * size x
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsifyKL ============
563.58 s
[algebraic-graphs] OK: sort . reachable x == sort . filter (<= n) . reachable (sparsifyKL n x)
563.58 s
[algebraic-graphs] OK: length (vertices $ sparsifyKL n x) <= vertexCount x + size x + 1
563.58 s
[algebraic-graphs] OK: length (edges $ sparsifyKL n x) <= 3 * size x
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ NonEmpty.Graph.box ============
563.58 s
[algebraic-graphs] OK: box (path1 [0,1]) (path1 ['a','b']) == <correct result>
563.58 s
[algebraic-graphs] OK: box x y ~~ box y x
563.58 s
[algebraic-graphs] OK: box x (overlay y z) == overlay (box x y) (box x z)
563.58 s
[algebraic-graphs] OK: box x (vertex ()) ~~ x
563.58 s
[algebraic-graphs] OK: box x (box y z) ~~ box (box x y) z
563.58 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
563.58 s
[algebraic-graphs] OK: vertexCount (box x y) == vertexCount x * vertexCount y
563.58 s
[algebraic-graphs] OK: edgeCount (box x y) <= vertexCount x * edgeCount y + edgeCount x * vertexCount y
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation ============
563.58 s
[algebraic-graphs] OK: Axioms of graphs
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.consistent ============
563.58 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] OK: consistent empty == True
563.58 s
[algebraic-graphs] OK: consistent (vertex x) == True
563.58 s
[algebraic-graphs] OK: consistent (overlay x y) == True
563.58 s
[algebraic-graphs] OK: consistent (connect x y) == True
563.58 s
[algebraic-graphs] OK: consistent (edge x y) == True
563.58 s
[algebraic-graphs] OK: consistent (edges xs) == True
563.58 s
[algebraic-graphs] OK: consistent (stars xs) == True
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.Show ============
563.58 s
[algebraic-graphs] OK: show (empty ) == "empty"
563.58 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
563.58 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
563.58 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
563.58 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
563.58 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
563.58 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
563.58 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
563.58 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
563.58 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.Ord ============
563.58 s
[algebraic-graphs] OK: vertex 1 < vertex 2
563.58 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
563.58 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
563.58 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
563.58 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
563.58 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
563.58 s
[algebraic-graphs] OK: x <= x + y
563.58 s
[algebraic-graphs] OK: x + y <= x * y
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.empty ============
563.58 s
[algebraic-graphs] OK: isEmpty empty == True
563.58 s
[algebraic-graphs] OK: hasVertex x empty == False
563.58 s
[algebraic-graphs] OK: vertexCount empty == 0
563.58 s
[algebraic-graphs] OK: edgeCount empty == 0
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.vertex ============
563.58 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
563.58 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
563.58 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
563.58 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.edge ============
563.58 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
563.58 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
563.58 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
563.58 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
563.58 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.overlay ============
563.58 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
563.58 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
563.58 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
563.58 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
563.58 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
563.58 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
563.58 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
563.58 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.connect ============
563.58 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
563.58 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
563.58 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
563.58 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
563.58 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
563.58 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
563.58 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
563.58 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
563.58 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
563.58 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.vertices ============
563.58 s
[algebraic-graphs] OK: vertices [] == empty
563.58 s
[algebraic-graphs] OK: vertices [x] == vertex x
563.58 s
[algebraic-graphs] OK: vertices == overlays . map vertex
563.58 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
563.58 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
563.58 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.edges ============
563.58 s
[algebraic-graphs] OK: edges [] == empty
563.58 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
563.58 s
[algebraic-graphs] OK: edges == overlays . map (uncurry edge)
563.58 s
[algebraic-graphs] OK: edgeCount . edges == length . nub
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.overlays ============
563.58 s
[algebraic-graphs] OK: overlays [] == empty
563.58 s
[algebraic-graphs] OK: overlays [x] == x
563.58 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
563.58 s
[algebraic-graphs] OK: overlays == foldr overlay empty
563.58 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.connects ============
563.58 s
[algebraic-graphs] OK: connects [] == empty
563.58 s
[algebraic-graphs] OK: connects [x] == x
563.58 s
[algebraic-graphs] OK: connects [x,y] == connect x y
563.58 s
[algebraic-graphs] OK: connects == foldr connect empty
563.58 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.isSubgraphOf ============
563.58 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
563.58 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
563.58 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
563.58 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
563.58 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
563.58 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
563.58 s
[algebraic-graphs]
563.58 s
[algebraic-graphs] ============ Relation.toGraph et al. ============
563.58 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
563.58 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
563.58 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
563.58 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
563.58 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
563.58 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
563.58 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
563.58 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
563.58 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
563.58 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
563.58 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
563.58 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
563.58 s
[algebraic-graphs] OK: edgeSet == Algebra.Graph.AdjacencyMap.edgeSet . foldg empty vertex overlay connect
563.58 s
[algebraic-graphs] OK: preSet x == Algebra.Graph.AdjacencyMap.preSet x . toAdjacencyMap
563.58 s
[algebraic-graphs] OK: preIntSet x == Algebra.Graph.AdjacencyIntMap.preIntSet x . toAdjacencyIntMap
563.58 s
[algebraic-graphs] OK: postSet x == Algebra.Graph.AdjacencyMap.postSet x . toAdjacencyMap
563.58 s
[algebraic-graphs] OK: postIntSet x == Algebra.Graph.AdjacencyIntMap.postIntSet x . toAdjacencyIntMap
566.96 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
566.96 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
566.97 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
566.97 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
566.97 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
566.97 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
566.97 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
566.97 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
566.97 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
566.97 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.foldg ============
566.97 s
[algebraic-graphs] OK: foldg empty vertex overlay connect == id
566.97 s
[algebraic-graphs] OK: foldg empty vertex overlay (flip connect) == transpose
566.97 s
[algebraic-graphs] OK: foldg 1 (const 1) (+) (+) == size
566.97 s
[algebraic-graphs] OK: foldg True (const False) (&&) (&&) == isEmpty
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.isEmpty ============
566.97 s
[algebraic-graphs] OK: isEmpty empty == True
566.97 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
566.97 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
566.97 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
566.97 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.hasVertex ============
566.97 s
[algebraic-graphs] OK: hasVertex x empty == False
566.97 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
566.97 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.hasEdge ============
566.97 s
[algebraic-graphs] OK: hasEdge x y empty == False
566.97 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
566.97 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
566.97 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
566.97 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.vertexCount ============
566.97 s
[algebraic-graphs] OK: vertexCount empty == 0
566.97 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
566.97 s
[algebraic-graphs] OK: vertexCount == length . vertexList
566.97 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.edgeCount ============
566.97 s
[algebraic-graphs] OK: edgeCount empty == 0
566.97 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
566.97 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
566.97 s
[algebraic-graphs] OK: edgeCount == length . edgeList
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.vertexList ============
566.97 s
[algebraic-graphs] OK: vertexList empty == []
566.97 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
566.97 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.vertexSet ============
566.97 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
566.97 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
566.97 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.vertexIntSet ============
566.97 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
566.97 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
566.97 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
566.97 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.edgeList ============
566.97 s
[algebraic-graphs] OK: edgeList empty == []
566.97 s
[algebraic-graphs] OK: edgeList (vertex x) == []
566.97 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
566.97 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
566.97 s
[algebraic-graphs] OK: edgeList . edges == nub . sort
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.edgeSet ============
566.97 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
566.97 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
566.97 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
566.97 s
[algebraic-graphs] OK: edgeSet . edges == Set.fromList
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.adjacencyList ============
566.97 s
[algebraic-graphs] OK: adjacencyList empty == []
566.97 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
566.97 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [])]
566.97 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, []), (2, [1,3]), (3, [])]
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.preSet ============
566.97 s
[algebraic-graphs] OK: preSet x empty == Set.empty
566.97 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
566.97 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
566.97 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.preIntSet ============
566.97 s
[algebraic-graphs] OK: preIntSet x empty == IntSet.empty
566.97 s
[algebraic-graphs] OK: preIntSet x (vertex x) == IntSet.empty
566.97 s
[algebraic-graphs] OK: preIntSet 1 (edge 1 2) == IntSet.empty
566.97 s
[algebraic-graphs] OK: preIntSet y (edge x y) == IntSet.fromList [x]
566.97 s
[algebraic-graphs]
566.97 s
[algebraic-graphs] ============ Relation.postSet ============
566.97 s
[algebraic-graphs] OK: postSet x empty == Set.empty
566.97 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
566.97 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
566.98 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
566.98 s
[algebraic-graphs]
566.98 s
[algebraic-graphs] ============ Relation.postIntSet ============
566.98 s
[algebraic-graphs] OK: postIntSet x empty == IntSet.empty
566.98 s
[algebraic-graphs] OK: postIntSet x (vertex x) == IntSet.empty
566.98 s
[algebraic-graphs] OK: postIntSet 2 (edge 1 2) == IntSet.empty
566.98 s
[algebraic-graphs] OK: postIntSet x (edge x y) == IntSet.fromList [y]
566.98 s
[algebraic-graphs]
566.98 s
[algebraic-graphs] ============ Relation.path ============
566.98 s
[algebraic-graphs] OK: path [] == empty
566.98 s
[algebraic-graphs] OK: path [x] == vertex x
566.98 s
[algebraic-graphs] OK: path [x,y] == edge x y
566.98 s
[algebraic-graphs]
566.98 s
[algebraic-graphs] ============ Relation.circuit ============
566.98 s
[algebraic-graphs] OK: circuit [] == empty
566.98 s
[algebraic-graphs] OK: circuit [x] == edge x x
566.98 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
566.98 s
[algebraic-graphs]
566.98 s
[algebraic-graphs] ============ Relation.clique ============
566.98 s
[algebraic-graphs] OK: clique [] == empty
566.98 s
[algebraic-graphs] OK: clique [x] == vertex x
566.98 s
[algebraic-graphs] OK: clique [x,y] == edge x y
566.98 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
566.98 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
566.98 s
[algebraic-graphs]
566.98 s
[algebraic-graphs] ============ Relation.biclique ============
566.98 s
[algebraic-graphs] OK: biclique [] [] == empty
566.98 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
566.98 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
566.98 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
566.98 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
566.98 s
[algebraic-graphs]
566.98 s
[algebraic-graphs] ============ Relation.star ============
566.98 s
[algebraic-graphs] OK: star x [] == vertex x
566.98 s
[algebraic-graphs] OK: star x [y] == edge x y
566.98 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
566.98 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
566.98 s
[algebraic-graphs]
566.98 s
[algebraic-graphs] ============ Relation.stars ============
566.99 s
[algebraic-graphs] OK: stars [] == empty
566.99 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
566.99 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
566.99 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
566.99 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
566.99 s
[algebraic-graphs] OK: stars . adjacencyList == id
566.99 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
566.99 s
[algebraic-graphs]
566.99 s
[algebraic-graphs] ============ Relation.tree ============
566.99 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
566.99 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
566.99 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
566.99 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
566.99 s
[algebraic-graphs]
566.99 s
[algebraic-graphs] ============ Relation.forest ============
566.99 s
[algebraic-graphs] OK: forest [] == empty
566.99 s
[algebraic-graphs] OK: forest [x] == tree x
566.99 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
566.99 s
[algebraic-graphs] OK: forest == overlays . map tree
566.99 s
[algebraic-graphs]
566.99 s
[algebraic-graphs] ============ Relation.removeVertex ============
566.99 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
566.99 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
566.99 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
566.99 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
566.99 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
566.99 s
[algebraic-graphs]
566.99 s
[algebraic-graphs] ============ Relation.removeEdge ============
566.99 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
566.99 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
566.99 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
566.99 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
566.99 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
566.99 s
[algebraic-graphs]
566.99 s
[algebraic-graphs] ============ Relation.replaceVertex ============
566.99 s
[algebraic-graphs] OK: replaceVertex x x == id
566.99 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
566.99 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
566.99 s
[algebraic-graphs]
566.99 s
[algebraic-graphs] ============ Relation.mergeVertices ============
566.99 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
592.27 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
592.27 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
592.31 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
592.31 s
[algebraic-graphs]
592.31 s
[algebraic-graphs] ============ Relation.transpose ============
592.31 s
[algebraic-graphs] OK: transpose empty == empty
592.31 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
592.31 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
592.31 s
[algebraic-graphs] OK: transpose . transpose == id
592.31 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
592.31 s
[algebraic-graphs]
592.31 s
[algebraic-graphs] ============ Relation.gmap ============
592.31 s
[algebraic-graphs] OK: gmap f empty == empty
592.31 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
592.31 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
592.31 s
[algebraic-graphs] OK: gmap id == id
592.31 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
592.31 s
[algebraic-graphs]
592.31 s
[algebraic-graphs] ============ Relation.induce ============
592.31 s
[algebraic-graphs] OK: induce (const True ) x == x
592.31 s
[algebraic-graphs] OK: induce (const False) x == empty
592.31 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
592.31 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
592.31 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
592.31 s
[algebraic-graphs]
592.31 s
[algebraic-graphs] ============ Relation.compose ============
592.31 s
[algebraic-graphs] OK: compose empty x == empty
592.31 s
[algebraic-graphs] OK: compose x empty == empty
592.31 s
[algebraic-graphs] OK: compose (vertex x) y == empty
592.31 s
[algebraic-graphs] OK: compose x (vertex y) == empty
592.31 s
[algebraic-graphs] OK: compose x (compose y z) == compose (compose x y) z
592.31 s
[algebraic-graphs] OK: compose x (overlay y z) == overlay (compose x y) (compose x z)
592.31 s
[algebraic-graphs] OK: compose (overlay x y) z == overlay (compose x z) (compose y z)
592.31 s
[algebraic-graphs] OK: compose (edge x y) (edge y z) == edge x z
592.31 s
[algebraic-graphs] OK: compose (path [1..5]) (path [1..5]) == edges [(1,3),(2,4),(3,5)]
592.31 s
[algebraic-graphs] OK: compose (circuit [1..5]) (circuit [1..5]) == circuit [1,3,5,2,4]
592.31 s
[algebraic-graphs]
592.31 s
[algebraic-graphs] ============ Relation.closure ============
592.31 s
[algebraic-graphs] OK: closure empty == empty
592.31 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
592.32 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
592.32 s
[algebraic-graphs] OK: closure (edge x y) == edges [(x,x), (x,y), (y,y)]
592.32 s
[algebraic-graphs] OK: closure (path $ nub xs) == reflexiveClosure (clique $ nub xs)
592.32 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
592.32 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
592.32 s
[algebraic-graphs] OK: closure . closure == closure
592.32 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Relation.reflexiveClosure ============
592.32 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
592.32 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
592.32 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
592.32 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges [(x,x), (x,y), (y,y)]
592.32 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Relation.symmetricClosure ============
592.32 s
[algebraic-graphs] OK: symmetricClosure empty == empty
592.32 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
592.32 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges [(x,y), (y,x)]
592.32 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
592.32 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Relation.transitiveClosure ============
592.32 s
[algebraic-graphs] OK: transitiveClosure empty == empty
592.32 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
592.32 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
592.32 s
[algebraic-graphs] OK: transitiveClosure (path $ nub xs) == clique (nub $ xs)
592.32 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Relation.induceJust ============
592.32 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
592.32 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
592.32 s
[algebraic-graphs] OK: induceJust . gmap Just == id
592.32 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ ReflexiveRelation ============
592.32 s
[algebraic-graphs] OK: Axioms of reflexive graphs
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ TransitiveRelation ============
592.32 s
[algebraic-graphs] OK: Axioms of transitive graphs
592.32 s
[algebraic-graphs] OK: path xs == (clique xs :: TransitiveRelation Int)
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ PreorderRelation ============
592.32 s
[algebraic-graphs] OK: Axioms of preorder graphs
592.32 s
[algebraic-graphs] OK: path xs == (clique xs :: PreorderRelation Int)
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation ============
592.32 s
[algebraic-graphs] OK: Axioms of undirected graphs
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation.consistent ============
592.32 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] OK: consistent empty == True
592.32 s
[algebraic-graphs] OK: consistent (vertex x) == True
592.32 s
[algebraic-graphs] OK: consistent (overlay x y) == True
592.32 s
[algebraic-graphs] OK: consistent (connect x y) == True
592.32 s
[algebraic-graphs] OK: consistent (edge x y) == True
592.32 s
[algebraic-graphs] OK: consistent (edges xs) == True
592.32 s
[algebraic-graphs] OK: consistent (stars xs) == True
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation.Show ============
592.32 s
[algebraic-graphs] OK: show (empty ) == "empty"
592.32 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
592.32 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
592.32 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
592.32 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
592.32 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
592.32 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
592.32 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
592.32 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
592.32 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
592.32 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
592.32 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation.toSymmetric ============
592.32 s
[algebraic-graphs] OK: toSymmetric (edge 1 2) == edge 1 2
592.32 s
[algebraic-graphs] OK: toSymmetric . fromSymmetric == id
592.32 s
[algebraic-graphs] OK: fromSymmetric . toSymmetric == symmetricClosure
592.32 s
[algebraic-graphs] OK: vertexCount . toSymmetric == vertexCount
592.32 s
[algebraic-graphs] OK: (*2) . edgeCount . toSymmetric >= edgeCount
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation.fromSymmetric ============
592.32 s
[algebraic-graphs] OK: fromSymmetric (edge 1 2) == edges [(1,2), (2,1)]
592.32 s
[algebraic-graphs] OK: vertexCount . fromSymmetric == vertexCount
592.32 s
[algebraic-graphs] OK: edgeCount . fromSymmetric <= (*2) . edgeCount
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation.Ord ============
592.32 s
[algebraic-graphs] OK: vertex 1 < vertex 2
592.32 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
592.32 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
592.32 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
592.32 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
592.32 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
592.32 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
592.32 s
[algebraic-graphs] OK: x <= x + y
592.32 s
[algebraic-graphs] OK: x + y <= x * y
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation.empty ============
592.32 s
[algebraic-graphs] OK: isEmpty empty == True
592.32 s
[algebraic-graphs] OK: hasVertex x empty == False
592.32 s
[algebraic-graphs] OK: vertexCount empty == 0
592.32 s
[algebraic-graphs] OK: edgeCount empty == 0
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation.vertex ============
592.32 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
592.32 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
592.32 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
592.32 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
592.32 s
[algebraic-graphs]
592.32 s
[algebraic-graphs] ============ Symmetric.Relation.edge ============
592.32 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
592.33 s
[algebraic-graphs] OK: edge x y == edge y x
592.33 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
592.33 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
592.33 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
592.33 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
592.33 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
592.33 s
[algebraic-graphs]
592.33 s
[algebraic-graphs] ============ Symmetric.Relation.overlay ============
592.33 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
592.33 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
592.33 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
592.33 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
592.33 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
592.33 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
592.33 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
592.33 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
592.33 s
[algebraic-graphs]
592.33 s
[algebraic-graphs] ============ Symmetric.Relation.connect ============
592.33 s
[algebraic-graphs] OK: connect x y == connect y x
592.33 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
592.33 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
592.33 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
592.33 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
592.33 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
592.33 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
592.33 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
592.33 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
592.33 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
592.33 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
592.33 s
[algebraic-graphs]
592.33 s
[algebraic-graphs] ============ Symmetric.Relation.vertices ============
592.33 s
[algebraic-graphs] OK: vertices [] == empty
592.33 s
[algebraic-graphs] OK: vertices [x] == vertex x
592.33 s
[algebraic-graphs] OK: vertices == overlays . map vertex
592.33 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
592.33 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
592.33 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
592.33 s
[algebraic-graphs]
592.33 s
[algebraic-graphs] ============ Symmetric.Relation.edges ============
592.33 s
[algebraic-graphs] OK: edges [] == empty
592.33 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
592.33 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
592.33 s
[algebraic-graphs]
592.33 s
[algebraic-graphs] ============ Symmetric.Relation.overlays ============
592.33 s
[algebraic-graphs] OK: overlays [] == empty
612.85 s
[algebraic-graphs] OK: overlays [x] == x
612.89 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
612.89 s
[algebraic-graphs] OK: overlays == foldr overlay empty
612.89 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.connects ============
612.89 s
[algebraic-graphs] OK: connects [] == empty
612.89 s
[algebraic-graphs] OK: connects [x] == x
612.89 s
[algebraic-graphs] OK: connects [x,y] == connect x y
612.89 s
[algebraic-graphs] OK: connects == foldr connect empty
612.89 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
612.89 s
[algebraic-graphs] OK: connects == connects . reverse
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.isSubgraphOf ============
612.89 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
612.89 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
612.89 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
612.89 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
612.89 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
612.89 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
612.89 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.toGraph et al. ============
612.89 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
612.89 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
612.89 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
612.89 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
612.89 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
612.89 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
612.89 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
612.89 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
612.89 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
612.89 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
612.89 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
612.89 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
612.89 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
612.89 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
612.89 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
612.89 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
612.89 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
612.89 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
612.89 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
612.89 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
612.89 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.isEmpty ============
612.89 s
[algebraic-graphs] OK: isEmpty empty == True
612.89 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
612.89 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
612.89 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
612.89 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.hasVertex ============
612.89 s
[algebraic-graphs] OK: hasVertex x empty == False
612.89 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
612.89 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.hasEdge ============
612.89 s
[algebraic-graphs] OK: hasEdge x y empty == False
612.89 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
612.89 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
612.89 s
[algebraic-graphs] OK: hasEdge x y (edge y x) == True
612.89 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
612.89 s
[algebraic-graphs] OK: hasEdge x y == elem (min x y, max x y) . edgeList
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.vertexCount ============
612.89 s
[algebraic-graphs] OK: vertexCount empty == 0
612.89 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
612.89 s
[algebraic-graphs] OK: vertexCount == length . vertexList
612.89 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.edgeCount ============
612.89 s
[algebraic-graphs] OK: edgeCount empty == 0
612.89 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
612.89 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
612.89 s
[algebraic-graphs] OK: edgeCount == length . edgeList
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.vertexList ============
612.89 s
[algebraic-graphs] OK: vertexList empty == []
612.89 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
612.89 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.vertexSet ============
612.89 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
612.89 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
612.89 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.vertexIntSet ============
612.89 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
612.89 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
612.89 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
612.89 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.edgeList ============
612.89 s
[algebraic-graphs] OK: edgeList empty == []
612.89 s
[algebraic-graphs] OK: edgeList (vertex x) == []
612.89 s
[algebraic-graphs] OK: edgeList (edge x y) == [(min x y, max y x)]
612.89 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(1,2), (2,3)]
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.edgeSet ============
612.89 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
612.89 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
612.89 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (min x y, max x y)
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.adjacencyList ============
612.89 s
[algebraic-graphs] OK: adjacencyList empty == []
612.89 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
612.89 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [1])]
612.89 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, [2]), (2, [1,3]), (3, [2])]
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.neighbours ============
612.89 s
[algebraic-graphs] OK: neighbours x empty == Set.empty
612.89 s
[algebraic-graphs] OK: neighbours x (vertex x) == Set.empty
612.89 s
[algebraic-graphs] OK: neighbours x (edge x y) == Set.fromList [y]
612.89 s
[algebraic-graphs] OK: neighbours y (edge x y) == Set.fromList [x]
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.path ============
612.89 s
[algebraic-graphs] OK: path [] == empty
612.89 s
[algebraic-graphs] OK: path [x] == vertex x
612.89 s
[algebraic-graphs] OK: path [x,y] == edge x y
612.89 s
[algebraic-graphs] OK: path == path . reverse
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.circuit ============
612.89 s
[algebraic-graphs] OK: circuit [] == empty
612.89 s
[algebraic-graphs] OK: circuit [x] == edge x x
612.89 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
612.89 s
[algebraic-graphs] OK: circuit == circuit . reverse
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.clique ============
612.89 s
[algebraic-graphs] OK: clique [] == empty
612.89 s
[algebraic-graphs] OK: clique [x] == vertex x
612.89 s
[algebraic-graphs] OK: clique [x,y] == edge x y
612.89 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
612.89 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
612.89 s
[algebraic-graphs] OK: clique == clique . reverse
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.biclique ============
612.89 s
[algebraic-graphs] OK: biclique [] [] == empty
612.89 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
612.89 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
612.89 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
612.89 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.star ============
612.89 s
[algebraic-graphs] OK: star x [] == vertex x
612.89 s
[algebraic-graphs] OK: star x [y] == edge x y
612.89 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
612.89 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.stars ============
612.89 s
[algebraic-graphs] OK: stars [] == empty
612.89 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
612.89 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
612.89 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
612.89 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
612.89 s
[algebraic-graphs] OK: stars . adjacencyList == id
612.89 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.tree ============
612.89 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
612.89 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
612.89 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
612.89 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
612.89 s
[algebraic-graphs]
612.89 s
[algebraic-graphs] ============ Symmetric.Relation.forest ============
612.89 s
[algebraic-graphs] OK: forest [] == empty
621.31 s
[algebraic-graphs] OK: forest [x] == tree x
621.31 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
621.35 s
[algebraic-graphs] OK: forest == overlays . map tree
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Symmetric.Relation.removeVertex ============
621.35 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
621.35 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
621.35 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
621.35 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
621.35 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Symmetric.Relation.removeEdge ============
621.35 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
621.35 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
621.35 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
621.35 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
621.35 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
621.35 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Symmetric.Relation.replaceVertex ============
621.35 s
[algebraic-graphs] OK: replaceVertex x x == id
621.35 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
621.35 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Symmetric.Relation.mergeVertices ============
621.35 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
621.35 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
621.35 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
621.35 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Symmetric.Relation.gmap ============
621.35 s
[algebraic-graphs] OK: gmap f empty == empty
621.35 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
621.35 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
621.35 s
[algebraic-graphs] OK: gmap id == id
621.35 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Symmetric.Relation.induce ============
621.35 s
[algebraic-graphs] OK: induce (const True ) x == x
621.35 s
[algebraic-graphs] OK: induce (const False) x == empty
621.35 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
621.35 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
621.35 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Symmetric.Relation.induceJust ============
621.35 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
621.35 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
621.35 s
[algebraic-graphs] OK: induceJust . gmap Just == id
621.35 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Example.Todo (Holiday) ============
621.35 s
[algebraic-graphs] OK: A todo list is semantically Maybe [a]
621.35 s
[algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
621.35 s
[algebraic-graphs] OK: The connect operator (*) adds dependency between items
621.35 s
[algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
621.35 s
[algebraic-graphs] OK: Introduce item priority to schedule the todo list
621.35 s
[algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Example.Todo (Commandline) ============
621.35 s
[algebraic-graphs] OK: The pull connect operator maintains command line semantics
621.35 s
[algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
621.35 s
[algebraic-graphs] OK: The usual connect operator breaks semantics
621.35 s
[algebraic-graphs] OK: Transform command lines by adding optimisation flag
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Typed ============
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Typed.fromAdjacencyMap ============
621.35 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
621.35 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
621.35 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
621.35 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
621.35 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
621.35 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
621.35 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
621.35 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Typed.dfsForest ============
621.35 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
621.35 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
621.35 s
[algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
621.35 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
621.35 s
[algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
621.35 s
[algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
621.35 s
[algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Typed.dfsForestFrom ============
621.35 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
621.35 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
621.35 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
621.35 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
621.35 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
621.35 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
621.35 s
[algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
621.35 s
[algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
621.35 s
[algebraic-graphs] OK: dfsForestFrom % x $ [] == []
621.35 s
[algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Typed.dfs ============
621.35 s
[algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
621.35 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
621.35 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
621.35 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
621.35 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
621.35 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
621.35 s
[algebraic-graphs] OK: dfs % x $ [] == []
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
621.35 s
[algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Typed.topSort ============
621.35 s
[algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
621.35 s
[algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
621.35 s
[algebraic-graphs]
621.35 s
[algebraic-graphs] ============ Graph.Undirected ============
621.35 s
[algebraic-graphs] OK: Axioms of undirected graphs
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] ============ Graph.Undirected.Show ============
621.36 s
[algebraic-graphs] OK: show (empty ) == "empty"
621.36 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
621.36 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
621.36 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
621.36 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
621.36 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
621.36 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
621.36 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
621.36 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
621.36 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
621.36 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
621.36 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] ============ Graph.Undirected.toUndirected ============
621.36 s
[algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
621.36 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
621.36 s
[algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
621.36 s
[algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
621.36 s
[algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
621.36 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
621.36 s
[algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
621.36 s
[algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] ============ Graph.Undirected.complement ================
621.36 s
[algebraic-graphs] OK: complement empty == empty
621.36 s
[algebraic-graphs] OK: complement (vertex x) == vertex x
621.36 s
[algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
621.36 s
[algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
621.36 s
[algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
621.36 s
[algebraic-graphs] OK: complement . complement == id
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] ============ Graph.Undirected.Ord ============
621.36 s
[algebraic-graphs] OK: vertex 1 < vertex 2
621.36 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
621.36 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
621.36 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
621.36 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
621.36 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
621.36 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
621.36 s
[algebraic-graphs] OK: x <= x + y
621.36 s
[algebraic-graphs] OK: x + y <= x * y
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] ============ Graph.Undirected.empty ============
621.36 s
[algebraic-graphs] OK: isEmpty empty == True
621.36 s
[algebraic-graphs] OK: hasVertex x empty == False
621.36 s
[algebraic-graphs] OK: vertexCount empty == 0
621.36 s
[algebraic-graphs] OK: edgeCount empty == 0
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] ============ Graph.Undirected.vertex ============
621.36 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
621.36 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
621.36 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
621.36 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
621.36 s
[algebraic-graphs]
621.36 s
[algebraic-graphs] ============ Graph.Undirected.edge ============
621.36 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
621.36 s
[algebraic-graphs] OK: edge x y == edge y x
631.21 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
631.21 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
631.21 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
631.25 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
631.25 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.overlay ============
631.25 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
631.25 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
631.25 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
631.25 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
631.25 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
631.25 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
631.25 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
631.25 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.connect ============
631.25 s
[algebraic-graphs] OK: connect x y == connect y x
631.25 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
631.25 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
631.25 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
631.25 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
631.25 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
631.25 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
631.25 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
631.25 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
631.25 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
631.25 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.vertices ============
631.25 s
[algebraic-graphs] OK: vertices [] == empty
631.25 s
[algebraic-graphs] OK: vertices [x] == vertex x
631.25 s
[algebraic-graphs] OK: vertices == overlays . map vertex
631.25 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
631.25 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
631.25 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.edges ============
631.25 s
[algebraic-graphs] OK: edges [] == empty
631.25 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
631.25 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.overlays ============
631.25 s
[algebraic-graphs] OK: overlays [] == empty
631.25 s
[algebraic-graphs] OK: overlays [x] == x
631.25 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
631.25 s
[algebraic-graphs] OK: overlays == foldr overlay empty
631.25 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.connects ============
631.25 s
[algebraic-graphs] OK: connects [] == empty
631.25 s
[algebraic-graphs] OK: connects [x] == x
631.25 s
[algebraic-graphs] OK: connects [x,y] == connect x y
631.25 s
[algebraic-graphs] OK: connects == foldr connect empty
631.25 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
631.25 s
[algebraic-graphs] OK: connects == connects . reverse
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
631.25 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
631.25 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
631.25 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
631.25 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
631.25 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
631.25 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
631.25 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.path ============
631.25 s
[algebraic-graphs] OK: path [] == empty
631.25 s
[algebraic-graphs] OK: path [x] == vertex x
631.25 s
[algebraic-graphs] OK: path [x,y] == edge x y
631.25 s
[algebraic-graphs] OK: path == path . reverse
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.circuit ============
631.25 s
[algebraic-graphs] OK: circuit [] == empty
631.25 s
[algebraic-graphs] OK: circuit [x] == edge x x
631.25 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
631.25 s
[algebraic-graphs] OK: circuit == circuit . reverse
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.clique ============
631.25 s
[algebraic-graphs] OK: clique [] == empty
631.25 s
[algebraic-graphs] OK: clique [x] == vertex x
631.25 s
[algebraic-graphs] OK: clique [x,y] == edge x y
631.25 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
631.25 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
631.25 s
[algebraic-graphs] OK: clique == clique . reverse
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.biclique ============
631.25 s
[algebraic-graphs] OK: biclique [] [] == empty
631.25 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
631.25 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
631.25 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
631.25 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.star ============
631.25 s
[algebraic-graphs] OK: star x [] == vertex x
631.25 s
[algebraic-graphs] OK: star x [y] == edge x y
631.25 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
631.25 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.stars ============
631.25 s
[algebraic-graphs] OK: stars [] == empty
631.25 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
631.25 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
631.25 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
631.25 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
631.25 s
[algebraic-graphs] OK: stars . adjacencyList == id
631.25 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.tree ============
631.25 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
631.25 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
631.25 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
631.25 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.forest ============
631.25 s
[algebraic-graphs] OK: forest [] == empty
631.25 s
[algebraic-graphs] OK: forest [x] == tree x
631.25 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
631.25 s
[algebraic-graphs] OK: forest == overlays . map tree
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.removeVertex ============
631.25 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
631.25 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
631.25 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
631.25 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
631.25 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.removeEdge ============
631.25 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
631.25 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
631.25 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
631.25 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
631.25 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
631.25 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
631.25 s
[algebraic-graphs] OK: replaceVertex x x == id
631.25 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
631.25 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
631.25 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
631.25 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
631.25 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
631.25 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.gmap ============
631.25 s
[algebraic-graphs] OK: gmap f empty == empty
631.25 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
631.25 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
631.25 s
[algebraic-graphs] OK: gmap id == id
631.25 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.induce ============
631.25 s
[algebraic-graphs] OK: induce (const True ) x == x
631.25 s
[algebraic-graphs] OK: induce (const False) x == empty
631.25 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
631.25 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
631.25 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
631.25 s
[algebraic-graphs]
631.25 s
[algebraic-graphs] ============ Graph.Undirected.induceJust ============
631.25 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
631.25 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
631.25 s
[algebraic-graphs] OK: induceJust . gmap Just == id
631.25 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
631.25 s
[algebraic-graphs] Test suite main: PASS
631.25 s
[algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
631.25 s
[algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
631.25 s
[algebraic-graphs] checkPhase completed in 2 minutes 28 seconds
631.25 s
[algebraic-graphs] Phase: haddockPhase
631.36 s
[algebraic-graphs] Preprocessing library for algebraic-graphs-0.7...
631.36 s
[algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7...
631.53 s
[algebraic-graphs] [ 1 of 29] Compiling Algebra.Graph.AdjacencyMap ( src/Algebra/Graph/AdjacencyMap.hs, nothing )
631.98 s
[algebraic-graphs] [ 2 of 29] Compiling Algebra.Graph.AdjacencyIntMap ( src/Algebra/Graph/AdjacencyIntMap.hs, nothing )
632.10 s
[algebraic-graphs] [ 3 of 29] Compiling Algebra.Graph.AdjacencyIntMap.Algorithm ( src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs, nothing )
632.27 s
[algebraic-graphs] [ 4 of 29] Compiling Algebra.Graph.Internal ( src/Algebra/Graph/Internal.hs, nothing )
632.31 s
[algebraic-graphs] [ 5 of 29] Compiling Algebra.Graph ( src/Algebra/Graph.hs, nothing )
632.50 s
[algebraic-graphs] [ 6 of 29] Compiling Algebra.Graph.HigherKinded.Class ( src/Algebra/Graph/HigherKinded/Class.hs, nothing )
632.55 s
[algebraic-graphs] [ 7 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap ( src/Algebra/Graph/Bipartite/AdjacencyMap.hs, nothing )
632.82 s
[algebraic-graphs] [ 8 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap.Algorithm ( src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs, nothing )
632.93 s
[algebraic-graphs] [ 9 of 29] Compiling Algebra.Graph.Label ( src/Algebra/Graph/Label.hs, nothing )
633.26 s
[algebraic-graphs] [10 of 29] Compiling Algebra.Graph.NonEmpty.AdjacencyMap ( src/Algebra/Graph/NonEmpty/AdjacencyMap.hs, nothing )
633.37 s
[algebraic-graphs] [11 of 29] Compiling Algebra.Graph.AdjacencyMap.Algorithm ( src/Algebra/Graph/AdjacencyMap/Algorithm.hs, nothing )
633.56 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:384:43: warning : [ GHC-63394 ] [ -Wx-partial ]
633.56 s
[algebraic-graphs] In the use of ‘head’
633.56 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
633.56 s
[algebraic-graphs] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
633.56 s
[algebraic-graphs] |
633.56 s
[algebraic-graphs] 384 | exit v = do newComponent <- (v==).snd.head <$> gets boundaryStack
633.56 s
[algebraic-graphs] | ^^^^
633.56 s
[algebraic-graphs]
633.56 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:391:21: warning : [ GHC-63394 ] [ -Wx-partial ]
633.56 s
[algebraic-graphs] In the use of ‘tail’
633.56 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
633.56 s
[algebraic-graphs] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
633.56 s
[algebraic-graphs] |
633.56 s
[algebraic-graphs] 391 | pth' = tail v_pth' -- Here we know that v_pth' starts with v
633.56 s
[algebraic-graphs] | ^^^^
633.56 s
[algebraic-graphs]
633.56 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:395:26: warning : [ GHC-63394 ] [ -Wx-partial ]
633.56 s
[algebraic-graphs] In the use of ‘head’
633.56 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
633.56 s
[algebraic-graphs] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
633.57 s
[algebraic-graphs] |
633.57 s
[algebraic-graphs] 395 | p_v = fst $ head bnd
633.57 s
[algebraic-graphs] | ^^^^
633.57 s
[algebraic-graphs]
633.57 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:397:21: warning : [ GHC-63394 ] [ -Wx-partial ]
633.57 s
[algebraic-graphs] In the use of ‘tail’
633.57 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
633.57 s
[algebraic-graphs] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
633.57 s
[algebraic-graphs] |
633.57 s
[algebraic-graphs] 397 | bnd' = tail bnd
633.57 s
[algebraic-graphs] | ^^^^
633.57 s
[algebraic-graphs]
633.57 s
[algebraic-graphs] [12 of 29] Compiling Algebra.Graph.Acyclic.AdjacencyMap ( src/Algebra/Graph/Acyclic/AdjacencyMap.hs, nothing )
633.71 s
[algebraic-graphs] [13 of 29] Compiling Algebra.Graph.ToGraph ( src/Algebra/Graph/ToGraph.hs, nothing )
633.82 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
633.82 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
633.82 s
[algebraic-graphs] will become an error in a future GHC release.
633.82 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
633.82 s
[algebraic-graphs] |
633.83 s
[algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
633.83 s
[algebraic-graphs] | ^
633.83 s
[algebraic-graphs]
633.83 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
633.83 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
633.83 s
[algebraic-graphs] will become an error in a future GHC release.
633.83 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
633.83 s
[algebraic-graphs] |
633.83 s
[algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
633.83 s
[algebraic-graphs] | ^
633.83 s
[algebraic-graphs]
633.83 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
633.83 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
633.83 s
[algebraic-graphs] will become an error in a future GHC release.
633.83 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
633.83 s
[algebraic-graphs] |
633.83 s
[algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
633.83 s
[algebraic-graphs] | ^
633.83 s
[algebraic-graphs]
633.84 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
633.84 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
633.84 s
[algebraic-graphs] will become an error in a future GHC release.
633.84 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
633.84 s
[algebraic-graphs] |
633.84 s
[algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
633.84 s
[algebraic-graphs] | ^
633.84 s
[algebraic-graphs]
633.84 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
633.84 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
633.84 s
[algebraic-graphs] will become an error in a future GHC release.
633.84 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
633.84 s
[algebraic-graphs] |
633.84 s
[algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
633.84 s
[algebraic-graphs] | ^
633.84 s
[algebraic-graphs]
633.84 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
633.84 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
633.84 s
[algebraic-graphs] will become an error in a future GHC release.
633.84 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
633.84 s
[algebraic-graphs] |
633.84 s
[algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
633.84 s
[algebraic-graphs] | ^
633.84 s
[algebraic-graphs]
633.84 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
633.84 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
633.84 s
[algebraic-graphs] will become an error in a future GHC release.
633.84 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
633.84 s
[algebraic-graphs] |
633.84 s
[algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
633.84 s
[algebraic-graphs] | ^
633.84 s
[algebraic-graphs]
633.85 s
[algebraic-graphs] [14 of 29] Compiling Algebra.Graph.Relation ( src/Algebra/Graph/Relation.hs, nothing )
633.99 s
[algebraic-graphs] [15 of 29] Compiling Algebra.Graph.Relation.Symmetric ( src/Algebra/Graph/Relation/Symmetric.hs, nothing )
634.09 s
[algebraic-graphs] [16 of 29] Compiling Algebra.Graph.NonEmpty ( src/Algebra/Graph/NonEmpty.hs, nothing )
634.42 s
[algebraic-graphs] [17 of 29] Compiling Algebra.Graph.Labelled.AdjacencyMap ( src/Algebra/Graph/Labelled/AdjacencyMap.hs, nothing )
634.59 s
[algebraic-graphs] [18 of 29] Compiling Algebra.Graph.Labelled ( src/Algebra/Graph/Labelled.hs, nothing )
634.78 s
[algebraic-graphs] [19 of 29] Compiling Algebra.Graph.Labelled.Example.Network ( src/Algebra/Graph/Labelled/Example/Network.hs, nothing )
634.79 s
[algebraic-graphs] [20 of 29] Compiling Algebra.Graph.Labelled.Example.Automaton ( src/Algebra/Graph/Labelled/Example/Automaton.hs, nothing )
634.82 s
[algebraic-graphs] [21 of 29] Compiling Algebra.Graph.Export ( src/Algebra/Graph/Export.hs, nothing )
634.94 s
[algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
634.94 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
634.94 s
[algebraic-graphs] will become an error in a future GHC release.
634.94 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
634.94 s
[algebraic-graphs] |
634.94 s
[algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
634.94 s
[algebraic-graphs] | ^
634.94 s
[algebraic-graphs]
634.94 s
[algebraic-graphs] [22 of 29] Compiling Algebra.Graph.Export.Dot ( src/Algebra/Graph/Export/Dot.hs, nothing )
634.97 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
634.97 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
634.97 s
[algebraic-graphs] will become an error in a future GHC release.
634.97 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
634.97 s
[algebraic-graphs] |
634.97 s
[algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
634.97 s
[algebraic-graphs] | ^
634.97 s
[algebraic-graphs]
634.97 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
634.97 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
634.97 s
[algebraic-graphs] will become an error in a future GHC release.
634.97 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
634.97 s
[algebraic-graphs] |
634.97 s
[algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
634.97 s
[algebraic-graphs] | ^
634.97 s
[algebraic-graphs]
634.97 s
[algebraic-graphs] [23 of 29] Compiling Algebra.Graph.Undirected ( src/Algebra/Graph/Undirected.hs, nothing )
635.11 s
[algebraic-graphs] [24 of 29] Compiling Algebra.Graph.Class ( src/Algebra/Graph/Class.hs, nothing )
635.21 s
[algebraic-graphs] [25 of 29] Compiling Algebra.Graph.Relation.Transitive ( src/Algebra/Graph/Relation/Transitive.hs, nothing )
635.23 s
[algebraic-graphs] [26 of 29] Compiling Algebra.Graph.Relation.Reflexive ( src/Algebra/Graph/Relation/Reflexive.hs, nothing )
635.25 s
[algebraic-graphs] [27 of 29] Compiling Algebra.Graph.Relation.Preorder ( src/Algebra/Graph/Relation/Preorder.hs, nothing )
635.27 s
[algebraic-graphs] [28 of 29] Compiling Algebra.Graph.Example.Todo ( src/Algebra/Graph/Example/Todo.hs, nothing )
635.29 s
[algebraic-graphs] [29 of 29] Compiling Data.Graph.Typed ( src/Data/Graph/Typed.hs, nothing )
635.32 s
[algebraic-graphs] Haddock coverage:
635.33 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.33 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
635.33 s
[algebraic-graphs] * in ‘Data.Map.Internal’
635.33 s
[algebraic-graphs] * in ‘Data.Set.Internal’
635.33 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.33 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.33 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
635.35 s
[algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
635.35 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.35 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
635.35 s
[algebraic-graphs] * in ‘Data.IntMap.Internal’
635.35 s
[algebraic-graphs] * in ‘Data.IntSet.Internal’
635.35 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.35 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.35 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
635.37 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
635.38 s
[algebraic-graphs] Warning: 'nub' is out of scope.
635.38 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.38 s
[algebraic-graphs] Warning: 'sort' is out of scope.
635.38 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.38 s
[algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
635.38 s
[algebraic-graphs] Missing documentation for:
635.38 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
635.38 s
[algebraic-graphs] Warning: 'List' is ambiguous. It is defined
635.38 s
[algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:18
635.38 s
[algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:1
635.38 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.38 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.38 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Internal.hs:50:1
635.38 s
[algebraic-graphs] Warning: 'IsList' is out of scope.
635.38 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.38 s
[algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
635.38 s
[algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
635.38 s
[algebraic-graphs] * at src/Algebra/Graph.hs:1400:18
635.38 s
[algebraic-graphs] * at src/Algebra/Graph.hs:1400:1
635.38 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.38 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.38 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:1400:1
635.40 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.40 s
[algebraic-graphs] * at src/Algebra/Graph.hs:316:1
635.40 s
[algebraic-graphs] * in ‘Data.Set.Internal’
635.40 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.40 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.40 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:316:1
635.42 s
[algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
635.42 s
[algebraic-graphs] Warning: 'mplus' is out of scope.
635.42 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.42 s
[algebraic-graphs] Warning: 'vertexCount' is out of scope.
635.42 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.42 s
[algebraic-graphs] Warning: 'hasVertex' is out of scope.
635.42 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.42 s
[algebraic-graphs] Warning: 'vertexSet' is out of scope.
635.42 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.42 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
635.42 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.42 s
[algebraic-graphs] Warning: 'edgeList' is out of scope.
635.42 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.42 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
635.42 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.43 s
[algebraic-graphs] Warning: 'box' is out of scope.
635.43 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.43 s
[algebraic-graphs] Warning: 'edgeCount' is out of scope.
635.43 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.43 s
[algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
635.44 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.44 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
635.44 s
[algebraic-graphs] * in ‘Data.Map.Internal’
635.44 s
[algebraic-graphs] * in ‘Data.Set.Internal’
635.44 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.44 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.44 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
635.44 s
[algebraic-graphs] Warning: 'nub' is out of scope.
635.44 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.45 s
[algebraic-graphs] Warning: 'swap' is ambiguous. It is defined
635.45 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
635.45 s
[algebraic-graphs] * in ‘GHC.Internal.Data.Tuple’
635.45 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.45 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.45 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
635.46 s
[algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
635.47 s
[algebraic-graphs] Warning: 'isRight' is out of scope.
635.47 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.47 s
[algebraic-graphs] Warning: 'Matching' is ambiguous. It is defined
635.47 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:21
635.47 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
635.47 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.47 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.47 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
635.47 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.47 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
635.47 s
[algebraic-graphs] * in ‘Data.Set.Internal’
635.47 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.47 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.47 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
635.47 s
[algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
635.47 s
[algebraic-graphs] Warning: 'Optimum' is ambiguous. It is defined
635.47 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:20
635.47 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:1
635.47 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.47 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.47 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:442:1
635.48 s
[algebraic-graphs] Warning: 'Distance' is ambiguous. It is defined
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:22
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:1
635.48 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.48 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.48 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:241:1
635.48 s
[algebraic-graphs] Warning: 'Minimum' is ambiguous. It is defined
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:21
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:1
635.48 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.48 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.48 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:314:1
635.48 s
[algebraic-graphs] Warning: 'Capacity' is ambiguous. It is defined
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:22
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:1
635.48 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.48 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.48 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:176:1
635.48 s
[algebraic-graphs] Warning: 'Count' is ambiguous. It is defined
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:19
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:1
635.48 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.48 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.48 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:209:1
635.48 s
[algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
635.48 s
[algebraic-graphs] Warning: 'AdjacencyMap' is ambiguous. It is defined
635.48 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:157:1
635.49 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
635.49 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.49 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.49 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
635.49 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
635.49 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.49 s
[algebraic-graphs] Warning: 'empty' is out of scope.
635.49 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.49 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
635.49 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.49 s
[algebraic-graphs] Warning: 'edges' is out of scope.
635.49 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.49 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
635.49 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.50 s
[algebraic-graphs] Warning: 'stars' is out of scope.
635.50 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.50 s
[algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
635.60 s
[algebraic-graphs] Warning: 'nub' is out of scope.
635.60 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.60 s
[algebraic-graphs] Warning: 'sort' is out of scope.
635.60 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.60 s
[algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
635.60 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
635.60 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
635.60 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.60 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.60 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
635.60 s
[algebraic-graphs] Warning: 'edge' is ambiguous. It is defined
635.60 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:252:1
635.60 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
635.60 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.60 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.60 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
635.60 s
[algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
635.60 s
[algebraic-graphs] Missing documentation for:
635.60 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
635.61 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.61 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
635.61 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
635.61 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.61 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.61 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
635.61 s
[algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
635.61 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:143:1
635.61 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
635.61 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.61 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.61 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:239:1
635.61 s
[algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
635.61 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:246:1
635.61 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:417:1
635.61 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.61 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.61 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:417:1
635.61 s
[algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
635.61 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:258:1
635.61 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:429:1
635.61 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.61 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.61 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:429:1
635.62 s
[algebraic-graphs] Warning: 'vertices' is ambiguous. It is defined
635.62 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:157:1
635.62 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:309:1
635.62 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.62 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.62 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:309:1
635.62 s
[algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
635.62 s
[algebraic-graphs] Warning: 'foldg' is ambiguous. It is defined
635.62 s
[algebraic-graphs] * at src/Algebra/Graph.hs:482:1
635.62 s
[algebraic-graphs] * at src/Algebra/Graph/ToGraph.hs:98:5
635.62 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.62 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.62 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/ToGraph.hs:98:5
635.63 s
[algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
635.63 s
[algebraic-graphs] Warning: 'Relation' is ambiguous. It is defined
635.63 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:19
635.63 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:1
635.63 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.63 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.63 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:157:1
635.64 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.64 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:243:1
635.64 s
[algebraic-graphs] * in ‘Data.Set.Internal’
635.64 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.64 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.64 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:243:1
635.65 s
[algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
635.65 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.65 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
635.66 s
[algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
635.66 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:423:1
635.66 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:372:1
635.66 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.66 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.66 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:372:1
635.66 s
[algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
635.66 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:435:1
635.66 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:384:1
635.66 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.66 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.66 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:384:1
635.66 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.66 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:188:1
635.66 s
[algebraic-graphs] * in ‘Data.Set.Internal’
635.66 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.66 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.66 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:188:1
635.67 s
[algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
635.68 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
635.68 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.69 s
[algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
635.69 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.69 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
635.69 s
[algebraic-graphs] * in ‘Data.Map.Internal’
635.70 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.70 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.70 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
635.70 s
[algebraic-graphs] Warning: 'hasEdge' is ambiguous. It is defined
635.70 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:403:1
635.70 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
635.70 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.70 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.70 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
635.70 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
635.71 s
[algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
635.71 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:20
635.71 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:1
635.71 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.71 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.71 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:675:1
635.71 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.71 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:191:1
635.71 s
[algebraic-graphs] * in ‘Data.Set.Internal’
635.71 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.71 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.71 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:191:1
635.72 s
[algebraic-graphs] Warning: 'Focus' is ambiguous. It is defined
635.72 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:18
635.72 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:1
635.72 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.72 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.72 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:642:1
635.72 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
635.72 s
[algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
635.72 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
635.73 s
[algebraic-graphs] Warning: 'Doc' is ambiguous. It is defined
635.73 s
[algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:17
635.73 s
[algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:1
635.73 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.73 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.73 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export.hs:57:1
635.73 s
[algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
635.73 s
[algebraic-graphs] Warning: 'Style' is ambiguous. It is defined
635.73 s
[algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:18
635.73 s
[algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:1
635.73 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.73 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.73 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export/Dot.hs:49:1
635.73 s
[algebraic-graphs] Warning: 'Graph' is out of scope.
635.73 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.73 s
[algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
635.74 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
635.74 s
[algebraic-graphs] * at src/Algebra/Graph/Undirected.hs:253:1
635.74 s
[algebraic-graphs] * in ‘Data.Set.Internal’
635.74 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.74 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.74 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Undirected.hs:253:1
635.75 s
[algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
635.76 s
[algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
635.76 s
[algebraic-graphs] Warning: 'TransitiveRelation' is ambiguous. It is defined
635.76 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:32
635.76 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:1
635.76 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.76 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.76 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Transitive.hs:39:1
635.76 s
[algebraic-graphs] Warning: 'Transitive' is out of scope.
635.76 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.76 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
635.76 s
[algebraic-graphs] Warning: 'ReflexiveRelation' is ambiguous. It is defined
635.76 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:31
635.76 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:1
635.76 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.76 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.76 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Reflexive.hs:34:1
635.76 s
[algebraic-graphs] Warning: 'Reflexive' is out of scope.
635.76 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.76 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
635.76 s
[algebraic-graphs] Warning: 'PreorderRelation' is ambiguous. It is defined
635.76 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:30
635.76 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:1
635.76 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.76 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.76 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Preorder.hs:44:1
635.76 s
[algebraic-graphs] Warning: 'Preorder' is out of scope.
635.76 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.76 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
635.76 s
[algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
635.76 s
[algebraic-graphs] Missing documentation for:
635.76 s
[algebraic-graphs] Module header
635.76 s
[algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
635.76 s
[algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:42)
635.76 s
[algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:23)
635.76 s
[algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:27)
635.76 s
[algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:35)
635.76 s
[algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:39)
635.76 s
[algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:31)
635.76 s
[algebraic-graphs] Warning: 'GraphKL' is ambiguous. It is defined
635.76 s
[algebraic-graphs] * at src/Data/Graph/Typed.hs:40:18
635.76 s
[algebraic-graphs] * at src/Data/Graph/Typed.hs:40:1
635.76 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
635.76 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
635.76 s
[algebraic-graphs] Defaulting to the one defined at src/Data/Graph/Typed.hs:40:1
635.77 s
[algebraic-graphs] Warning: 'array' is out of scope.
635.77 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
635.77 s
[algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
635.77 s
[algebraic-graphs] Missing documentation for:
635.77 s
[algebraic-graphs] scc (src/Data/Graph/Typed.hs:192)
636.02 s
[algebraic-graphs] Warning: Algebra.Graph.AdjacencyMap: could not find link destinations for:
636.02 s
[algebraic-graphs] - Algebra.Graph.AdjacencyMap.Rep_AdjacencyMap
636.03 s
[algebraic-graphs] Warning: Algebra.Graph.AdjacencyIntMap: could not find link destinations for:
636.03 s
[algebraic-graphs] - Algebra.Graph.AdjacencyIntMap.Rep_AdjacencyIntMap
636.04 s
[algebraic-graphs] Warning: Algebra.Graph: could not find link destinations for:
636.04 s
[algebraic-graphs] - Algebra.Graph.Rep_Graph
636.05 s
[algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap: could not find link destinations for:
636.05 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_List
636.05 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_AdjacencyMap
636.06 s
[algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap.Algorithm: could not find link destinations for:
636.06 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Algorithm.Rep_Matching
636.07 s
[algebraic-graphs] Warning: Algebra.Graph.NonEmpty.AdjacencyMap: could not find link destinations for:
636.07 s
[algebraic-graphs] - Algebra.Graph.NonEmpty.AdjacencyMap.Rep_AdjacencyMap
636.32 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled.AdjacencyMap: could not find link destinations for:
636.32 s
[algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.Rep_AdjacencyMap
636.46 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled: could not find link destinations for:
636.46 s
[algebraic-graphs] - Algebra.Graph.Labelled.Rep_Graph
636.46 s
[algebraic-graphs] Warning: Algebra.Graph.Undirected: could not find link destinations for:
636.46 s
[algebraic-graphs] - Algebra.Graph.Undirected.Rep_Graph
642.20 s
[algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs/,
642.20 s
[algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
642.28 s
[algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7...
642.29 s
[algebraic-graphs] Phase: installPhase
642.37 s
[algebraic-graphs] Installing library in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/algebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF
643.43 s
[algebraic-graphs] Phase: fixupPhase
643.45 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7
643.47 s
[algebraic-graphs] shrinking /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSalgebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF-ghc9.10.3.so
643.48 s
[algebraic-graphs] checking for references to /build/ in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7...
643.52 s
[algebraic-graphs] patching script interpreter paths in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7
643.53 s
[algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/lib
643.80 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc
643.82 s
[algebraic-graphs] checking for references to /build/ in /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc...
643.85 s
[algebraic-graphs] patching script interpreter paths in /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc
644.01 s
[algebraic-graphs:post-build] Uploading to cachix cache "sellout": /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7
644.48 s
[algebraic-graphs:post-build] Pushing 2 paths (70 are already present) using zstd to cache sellout ⏳
644.48 s
[algebraic-graphs:post-build]
644.84 s
[algebraic-graphs:post-build] Pushing /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc (10.41 MiB)
645.03 s
[algebraic-graphs:post-build] Pushing /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7 (25.06 MiB)
646.29 s
[algebraic-graphs:post-build]
646.29 s
[algebraic-graphs:post-build] All done.
646.32 s
[algebraic-graphs:post-build] Uploading to the NixCI cache: /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7
646.36 s
[algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
646.61 s
[algebraic-graphs:post-build] copying 2 paths...
646.61 s
[algebraic-graphs:post-build] copying path '/nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc' to 'https://cache.nix-ci.com'...
647.96 s
[algebraic-graphs:post-build] copying path '/nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
655.05 s
[algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
655.32 s
[algebraic-graphs:post-build] copying 1 paths...
655.36 s
[algebraic-graphs:post-build] copying path '/nix/store/wip2nh33hcl5kpqgrwz4lwk1ki34w3y6-algebraic-graphs-0.7.drv' to 'https://cache.nix-ci.com'...
655.60 s
Progress: 10 of 15 built, 36 of 36 downloaded from cache
655.65 s
Building /nix/store/27p59dzxgsasnm1l2qgih8lh7w4ly8s6-algebraic-graph-duoids-0.0.1.0.drv
655.81 s
[algebraic-graph-duoids] Phase: setupCompilerEnvironmentPhase
655.82 s
[algebraic-graph-duoids] Build with /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3.
656.06 s
[algebraic-graph-duoids] Phase: unpackPhase
656.06 s
[algebraic-graph-duoids] unpacking source archive /nix/store/j3nhvvhbp8d5l29mqdaf8f513lxyga6r-z8smrhvl4j2a1x1vb5nv502a87a6wsx7-source/./algebraic-graphs
656.08 s
[algebraic-graph-duoids] source root is algebraic-graphs
656.09 s
[algebraic-graph-duoids] Phase: patchPhase
656.10 s
[algebraic-graph-duoids] Phase: compileBuildDriverPhase
656.10 s
[algebraic-graph-duoids] setupCompileFlags: -package-db=/build/tmp.lLv1wDhW8G/setup-package.conf.d -threaded
656.17 s
[algebraic-graph-duoids] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.lLv1wDhW8G/Main.o )
656.22 s
[algebraic-graph-duoids] [2 of 2] Linking Setup
657.92 s
[algebraic-graph-duoids] Phase: updateAutotoolsGnuConfigScriptsPhase
657.93 s
[algebraic-graph-duoids] Phase: configurePhase
658.07 s
[algebraic-graph-duoids] configureFlags: --verbose --prefix=/nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0 --with-gcc=gcc --package-db=/build/tmp.lLv1wDhW8G/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-option=-haddock --ghc-options=-Werror --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib --extra-lib-dirs=/nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/lib
658.08 s
[algebraic-graph-duoids] Using Parsec parser
658.08 s
[algebraic-graph-duoids] Configuring algebraic-graph-duoids-0.0.1.0...
658.40 s
[algebraic-graph-duoids] Flags chosen: lint=False, noisy-deprecations=True
658.83 s
[algebraic-graph-duoids] Dependency algebraic-graphs >=0.5 && <0.6 || >=0.6.1 && <0.9: using
658.83 s
[algebraic-graph-duoids] algebraic-graphs-0.7
658.83 s
[algebraic-graph-duoids] Dependency base >=4.16.0 && <4.17 || >=4.17.0 && <4.18 || >=4.18.0 && <4.19 ||
658.83 s
[algebraic-graph-duoids] >=4.19.0 && <4.20 || >=4.20.0 && <4.21 || >=4.21.0 && <4.22 || >=4.22.0 &&
658.83 s
[algebraic-graph-duoids] <4.23: using base-4.20.2.0
658.83 s
[algebraic-graph-duoids] Dependency duoids >=0.0.1 && <0.1: using duoids-0.0.1.0
658.83 s
[algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
658.83 s
[algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
658.83 s
[algebraic-graph-duoids] Dependency algebraic-graphs >=0.5 && <0.6 || >=0.6.1 && <0.9: using
658.83 s
[algebraic-graph-duoids] algebraic-graphs-0.7
658.83 s
[algebraic-graph-duoids] Dependency base >=4.16.0 && <4.17 || >=4.17.0 && <4.18 || >=4.18.0 && <4.19 ||
658.83 s
[algebraic-graph-duoids] >=4.19.0 && <4.20 || >=4.20.0 && <4.21 || >=4.21.0 && <4.22 || >=4.22.0 &&
658.83 s
[algebraic-graph-duoids] <4.23: using base-4.20.2.0
658.83 s
[algebraic-graph-duoids] Dependency duoids-hedgehog >=0.0.1 && <0.1: using duoids-hedgehog-0.0.1.0
658.83 s
[algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
658.83 s
[algebraic-graph-duoids] Dependency hedgehog >=1.1 && <1.3 || >=1.4 && <1.6 || >=1.7 && <1.8: using
658.83 s
[algebraic-graph-duoids] hedgehog-1.5
658.83 s
[algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
658.83 s
[algebraic-graph-duoids] Dependency base >=4.16.0 && <4.17 || >=4.17.0 && <4.18 || >=4.18.0 && <4.19 ||
658.83 s
[algebraic-graph-duoids] >=4.19.0 && <4.20 || >=4.20.0 && <4.21 || >=4.21.0 && <4.22 || >=4.22.0 &&
658.83 s
[algebraic-graph-duoids] <4.23: using base-4.20.2.0
658.83 s
[algebraic-graph-duoids] Dependency doctest >=0.18.2 && <0.19 || >=0.20.1 && <0.21 || >=0.21.1 && <0.22
658.83 s
[algebraic-graph-duoids] || >=0.22.6 && <0.23 || >=0.24.0 && <0.25 || >=0.25.0 && <0.26: using
658.83 s
[algebraic-graph-duoids] doctest-0.24.2
658.83 s
[algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
658.83 s
[algebraic-graph-duoids] Source component graph:
658.83 s
[algebraic-graph-duoids] component lib
658.83 s
[algebraic-graph-duoids] component test:doctests dependency lib
658.83 s
[algebraic-graph-duoids] component test:laws dependency lib
658.83 s
[algebraic-graph-duoids] Configured component graph:
658.83 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.83 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF
658.83 s
[algebraic-graph-duoids] include base-4.20.2.0-64da
658.83 s
[algebraic-graph-duoids] include duoids-0.0.1.0-LeUPMTQm7bXLK0EvZ8xQV4
658.83 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.83 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-9AaeaywO6vaWvAoMck7b7-doctests
658.83 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.83 s
[algebraic-graph-duoids] include base-4.20.2.0-64da
658.83 s
[algebraic-graph-duoids] include doctest-0.24.2-3AlOWcyoxzU25BCXjZNoN8
658.83 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.83 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-5qIqiLWJtwP1i7RCUjDxOb-laws
658.83 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.83 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF
658.83 s
[algebraic-graph-duoids] include base-4.20.2.0-64da
658.83 s
[algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-LlVxRHnBv93Ed3XuXoPr27
658.83 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.83 s
[algebraic-graph-duoids] include hedgehog-1.5-1a3vYb8J3SX5GiTXBhj1zb
658.83 s
[algebraic-graph-duoids] Linked component graph:
658.83 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.83 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF
658.83 s
[algebraic-graph-duoids] include base-4.20.2.0-64da
658.83 s
[algebraic-graph-duoids] include duoids-0.0.1.0-LeUPMTQm7bXLK0EvZ8xQV4
658.83 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.83 s
[algebraic-graph-duoids] Algebra.Graph.Duoid=algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0:Algebra.Graph.Duoid,Algebra.Graph.Duoid.Orphans=algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0:Algebra.Graph.Duoid.Orphans
658.84 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-9AaeaywO6vaWvAoMck7b7-doctests
658.84 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.84 s
[algebraic-graph-duoids] include base-4.20.2.0-64da
658.84 s
[algebraic-graph-duoids] include doctest-0.24.2-3AlOWcyoxzU25BCXjZNoN8
658.84 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.84 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-5qIqiLWJtwP1i7RCUjDxOb-laws
658.84 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.84 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF
658.84 s
[algebraic-graph-duoids] include base-4.20.2.0-64da
658.84 s
[algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-LlVxRHnBv93Ed3XuXoPr27
658.84 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.84 s
[algebraic-graph-duoids] include hedgehog-1.5-1a3vYb8J3SX5GiTXBhj1zb
658.84 s
[algebraic-graph-duoids] Ready component graph:
658.84 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.84 s
[algebraic-graph-duoids] depends algebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF
658.84 s
[algebraic-graph-duoids] depends base-4.20.2.0-64da
658.84 s
[algebraic-graph-duoids] depends duoids-0.0.1.0-LeUPMTQm7bXLK0EvZ8xQV4
658.84 s
[algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.84 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-5qIqiLWJtwP1i7RCUjDxOb-laws
658.84 s
[algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.84 s
[algebraic-graph-duoids] depends algebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF
658.84 s
[algebraic-graph-duoids] depends base-4.20.2.0-64da
658.84 s
[algebraic-graph-duoids] depends duoids-hedgehog-0.0.1.0-LlVxRHnBv93Ed3XuXoPr27
658.84 s
[algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.84 s
[algebraic-graph-duoids] depends hedgehog-1.5-1a3vYb8J3SX5GiTXBhj1zb
658.84 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-9AaeaywO6vaWvAoMck7b7-doctests
658.84 s
[algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.84 s
[algebraic-graph-duoids] depends base-4.20.2.0-64da
658.84 s
[algebraic-graph-duoids] depends doctest-0.24.2-3AlOWcyoxzU25BCXjZNoN8
658.84 s
[algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-FfVU4e96H6pLj36sPPoZx3
658.84 s
[algebraic-graph-duoids] Using Cabal-3.12.1.0 compiled by ghc-9.10
658.84 s
[algebraic-graph-duoids] Using compiler: ghc-9.10.3
658.84 s
[algebraic-graph-duoids] Using install prefix:
658.84 s
[algebraic-graph-duoids] /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0
658.84 s
[algebraic-graph-duoids] Executables installed in:
658.84 s
[algebraic-graph-duoids] /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/bin
658.84 s
[algebraic-graph-duoids] Libraries installed in:
658.84 s
[algebraic-graph-duoids] /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
658.84 s
[algebraic-graph-duoids] Dynamic Libraries installed in:
658.84 s
[algebraic-graph-duoids] /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6
658.84 s
[algebraic-graph-duoids] Private executables installed in:
658.84 s
[algebraic-graph-duoids] /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/libexec/x86_64-linux-ghc-9.10.3-05f6/algebraic-graph-duoids-0.0.1.0
658.84 s
[algebraic-graph-duoids] Data files installed in:
658.84 s
[algebraic-graph-duoids] /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/share/x86_64-linux-ghc-9.10.3-05f6/algebraic-graph-duoids-0.0.1.0
658.84 s
[algebraic-graph-duoids] Documentation installed in:
658.84 s
[algebraic-graph-duoids] /nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0
658.84 s
[algebraic-graph-duoids] Configuration files installed in:
658.84 s
[algebraic-graph-duoids] /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/etc
658.84 s
[algebraic-graph-duoids] No alex found
658.84 s
[algebraic-graph-duoids] Using ar found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
658.84 s
[algebraic-graph-duoids] No c2hs found
658.84 s
[algebraic-graph-duoids] No cpphs found
658.84 s
[algebraic-graph-duoids] Using doctest version 0.24.2 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/9xdq341h0a92bjkmic50786dys0rvy7s-doctest-0.24.2/bin/doctest
658.84 s
[algebraic-graph-duoids] Using gcc version 14.3.0 given by user at:
658.84 s
[algebraic-graph-duoids] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
658.84 s
[algebraic-graph-duoids] Using ghc version 9.10.3 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc
658.84 s
[algebraic-graph-duoids] Using ghc-pkg version 9.10.3 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc-pkg-9.10.3
658.84 s
[algebraic-graph-duoids] No ghcjs found
658.84 s
[algebraic-graph-duoids] No ghcjs-pkg found
658.84 s
[algebraic-graph-duoids] No greencard found
658.84 s
[algebraic-graph-duoids] Using haddock version 2.31.1 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/haddock-ghc-9.10.3
658.84 s
[algebraic-graph-duoids] No happy found
658.84 s
[algebraic-graph-duoids] Using haskell-suite found on system at: haskell-suite-dummy-location
658.84 s
[algebraic-graph-duoids] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
658.84 s
[algebraic-graph-duoids] No hmake found
658.84 s
[algebraic-graph-duoids] Using hpc version 0.69 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hpc-ghc-9.10.3
658.84 s
[algebraic-graph-duoids] Using hsc2hs version 0.68.10 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
658.84 s
[algebraic-graph-duoids] Using hscolour version 1.25 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/f755skyzf4jvfx3crwq9mmh3x4lsaz8i-hscolour-1.25/bin/HsColour
658.84 s
[algebraic-graph-duoids] No jhc found
658.84 s
[algebraic-graph-duoids] Using ld found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/ld
658.84 s
[algebraic-graph-duoids] No pkg-config found
658.84 s
[algebraic-graph-duoids] Using runghc version 9.10.3 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/runghc-9.10.3
658.84 s
[algebraic-graph-duoids] Using strip version 2.44 found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
658.84 s
[algebraic-graph-duoids] Using tar found on system at:
658.84 s
[algebraic-graph-duoids] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
658.84 s
[algebraic-graph-duoids] No uhc found
659.16 s
[algebraic-graph-duoids] Phase: buildPhase
659.25 s
[algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
659.25 s
[algebraic-graph-duoids] Building library for algebraic-graph-duoids-0.0.1.0...
659.43 s
[algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, dist/build/Algebra/Graph/Duoid.o, dist/build/Algebra/Graph/Duoid.dyn_o )
659.89 s
[algebraic-graph-duoids] [2 of 2] Compiling Algebra.Graph.Duoid.Orphans ( src/Algebra/Graph/Duoid/Orphans.hs, dist/build/Algebra/Graph/Duoid/Orphans.o, dist/build/Algebra/Graph/Duoid/Orphans.dyn_o )
661.02 s
[algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, dist/build/Algebra/Graph/Duoid.p_o )
661.80 s
[algebraic-graph-duoids] [2 of 2] Compiling Algebra.Graph.Duoid.Orphans ( src/Algebra/Graph/Duoid/Orphans.hs, dist/build/Algebra/Graph/Duoid/Orphans.p_o )
665.64 s
[algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
665.64 s
[algebraic-graph-duoids] Building test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
665.78 s
[algebraic-graph-duoids] [1 of 1] Compiling Main ( tests/laws.hs, dist/build/laws/laws-tmp/Main.o )
666.80 s
[algebraic-graph-duoids] [2 of 2] Linking dist/build/laws/laws
668.10 s
[algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
668.10 s
[algebraic-graph-duoids] Building test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
668.22 s
[algebraic-graph-duoids] [1 of 2] Compiling Build_doctests ( dist/build/doctests/autogen/Build_doctests.hs, dist/build/doctests/doctests-tmp/Build_doctests.o )
668.71 s
[algebraic-graph-duoids] [2 of 2] Compiling Main ( tests/doctests.hs, dist/build/doctests/doctests-tmp/Main.o )
669.46 s
[algebraic-graph-duoids] [3 of 3] Linking dist/build/doctests/doctests
673.33 s
[algebraic-graph-duoids] Phase: checkPhase
673.59 s
[algebraic-graph-duoids] Running 2 test suites...
673.59 s
[algebraic-graph-duoids] Test suite laws: RUNNING...
673.64 s
[algebraic-graph-duoids] ━━━ Duoid.Normal (Graph Word8) ━━━
673.64 s
[algebraic-graph-duoids] ✓ unswapUnit passed 100 tests.
673.64 s
[algebraic-graph-duoids] ✓ interchange passed 100 tests.
673.64 s
[algebraic-graph-duoids] ✓ splitUnit passed 100 tests.
673.64 s
[algebraic-graph-duoids] ✓ joinUnit passed 100 tests.
673.64 s
[algebraic-graph-duoids] ✓ swapUnit passed 100 tests.
673.64 s
[algebraic-graph-duoids] ✓ 5 succeeded.
673.64 s
[algebraic-graph-duoids] Test suite laws: PASS
673.64 s
[algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-laws.log
673.64 s
[algebraic-graph-duoids] Test suite doctests: RUNNING...
674.16 s
[algebraic-graph-duoids] Examples: 0 Tried: 0 Errors: 0 Failures: 0
674.20 s
[algebraic-graph-duoids] NameLib Nothing
674.20 s
[algebraic-graph-duoids] ----------------------------------------
674.21 s
[algebraic-graph-duoids] Test suite doctests: PASS
674.21 s
[algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-doctests.log
674.21 s
[algebraic-graph-duoids] 2 of 2 test suites (2 of 2 test cases) passed.
674.22 s
[algebraic-graph-duoids] Phase: haddockPhase
674.37 s
[algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
674.37 s
[algebraic-graph-duoids] Running Haddock on library for algebraic-graph-duoids-0.0.1.0...
674.76 s
[algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, nothing )
675.25 s
[algebraic-graph-duoids] [2 of 2] Compiling Algebra.Graph.Duoid.Orphans ( src/Algebra/Graph/Duoid/Orphans.hs, nothing )
675.37 s
[algebraic-graph-duoids] Haddock coverage:
675.37 s
[algebraic-graph-duoids] 100% ( 5 / 5) in 'Algebra.Graph.Duoid'
675.37 s
[algebraic-graph-duoids] 100% ( 1 / 1) in 'Algebra.Graph.Duoid.Orphans'
685.28 s
[algebraic-graph-duoids] Documentation created: dist/doc/html/algebraic-graph-duoids/,
685.28 s
[algebraic-graph-duoids] dist/doc/html/algebraic-graph-duoids/algebraic-graph-duoids.txt
685.35 s
[algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
685.35 s
[algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
685.36 s
[algebraic-graph-duoids] Phase: installPhase
685.47 s
[algebraic-graph-duoids] Installing library in /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/algebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0
685.75 s
[algebraic-graph-duoids] Phase: fixupPhase
685.77 s
[algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0
685.77 s
[algebraic-graph-duoids] shrinking /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSalgebraic-graph-duoids-0.0.1.0-1RVI2YWrsfl2tbUi13FxZ0-ghc9.10.3.so
685.78 s
[algebraic-graph-duoids] checking for references to /build/ in /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0...
685.80 s
[algebraic-graph-duoids] patching script interpreter paths in /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0
685.81 s
[algebraic-graph-duoids] stripping (with command strip and flags -S -p) in /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/lib
685.86 s
[algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc
685.87 s
[algebraic-graph-duoids] checking for references to /build/ in /nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc...
685.89 s
[algebraic-graph-duoids] patching script interpreter paths in /nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc
686.03 s
[algebraic-graph-duoids:post-build] Uploading to cachix cache "sellout": /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0 /nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc
686.55 s
[algebraic-graph-duoids:post-build] Pushing 2 paths (76 are already present) using zstd to cache sellout ⏳
686.55 s
[algebraic-graph-duoids:post-build]
686.93 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0 (1.23 MiB)
687.08 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc (540.01 KiB)
688.16 s
[algebraic-graph-duoids:post-build]
688.16 s
[algebraic-graph-duoids:post-build] All done.
688.18 s
[algebraic-graph-duoids:post-build] Uploading to the NixCI cache: /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0 /nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc
688.23 s
[algebraic-graph-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
688.25 s
[algebraic-graph-duoids:post-build] copying 2 paths...
688.25 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/zvfqv8skw20as4g329naf8icrl1l1may-algebraic-graph-duoids-0.0.1.0-doc' to 'https://cache.nix-ci.com'...
688.67 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0' to 'https://cache.nix-ci.com'...
689.20 s
[algebraic-graph-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
689.44 s
[algebraic-graph-duoids:post-build] copying 1 paths...
689.44 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/27p59dzxgsasnm1l2qgih8lh7w4ly8s6-algebraic-graph-duoids-0.0.1.0.drv' to 'https://cache.nix-ci.com'...
689.71 s
Progress: 11 of 15 built, 36 of 36 downloaded from cache
689.77 s
Building /nix/store/1xihsvk0rgmw0jc33wyimrlylp6ma87b-ghc-9.10.3-with-packages.drv
689.83 s
[ghc-9.10.3-with-packages] /nix/store/3shlgq6nfak56nbnmad8l0mgbr232an7-duoidal-transformers-0.0.1.0/nix-support:
689.83 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.83 s
[ghc-9.10.3-with-packages] /nix/store/a2rwrpl7czz4iiidrj82c1xppp0pl1d4-duoids-0.0.1.0/nix-support:
689.83 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.84 s
[ghc-9.10.3-with-packages] /nix/store/88z7hh5090x820qgb8wni788p5wm7lyk-duoids-hedgehog-0.0.1.0/nix-support:
689.84 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.84 s
[ghc-9.10.3-with-packages] /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support:
689.84 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.85 s
[ghc-9.10.3-with-packages] /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support:
689.85 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.85 s
[ghc-9.10.3-with-packages] /nix/store/mca4hqdxwyqdqrcn2zi2iivca6yf9qhb-ghc-compat-plugin-0.1.0.1/nix-support:
689.85 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.85 s
[ghc-9.10.3-with-packages] /nix/store/mca4hqdxwyqdqrcn2zi2iivca6yf9qhb-ghc-compat-plugin-0.1.0.1/nix-support:
689.85 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.85 s
[ghc-9.10.3-with-packages] /nix/store/b0lrn2wipwvwzrxxdllwd82g27pa8483-hedgehog-1.5/nix-support:
689.85 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.86 s
[ghc-9.10.3-with-packages] /nix/store/b0lrn2wipwvwzrxxdllwd82g27pa8483-hedgehog-1.5/nix-support:
689.86 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.86 s
[ghc-9.10.3-with-packages] /nix/store/f147jf7r9k02q4r8r58yyy2d0pvni6qp-ansi-terminal-1.1.3/nix-support:
689.86 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.87 s
[ghc-9.10.3-with-packages] /nix/store/f147jf7r9k02q4r8r58yyy2d0pvni6qp-ansi-terminal-1.1.3/nix-support:
689.87 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.87 s
[ghc-9.10.3-with-packages] /nix/store/8zn2w7q66nk2d3l76mbsfgjdbkrxz35f-async-2.2.5/nix-support:
689.87 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.87 s
[ghc-9.10.3-with-packages] /nix/store/8zn2w7q66nk2d3l76mbsfgjdbkrxz35f-async-2.2.5/nix-support:
689.87 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.87 s
[ghc-9.10.3-with-packages] /nix/store/v4kk7n3dr39cglxrb3b3mnq3xhqr9ygq-barbies-2.1.1.0/nix-support:
689.87 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.88 s
[ghc-9.10.3-with-packages] /nix/store/v4kk7n3dr39cglxrb3b3mnq3xhqr9ygq-barbies-2.1.1.0/nix-support:
689.88 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.88 s
[ghc-9.10.3-with-packages] /nix/store/92mmmv96yx7xzbsi8r8c9mnz4hs7b2jg-concurrent-output-1.10.21/nix-support:
689.88 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.89 s
[ghc-9.10.3-with-packages] /nix/store/92mmmv96yx7xzbsi8r8c9mnz4hs7b2jg-concurrent-output-1.10.21/nix-support:
689.89 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.89 s
[ghc-9.10.3-with-packages] /nix/store/6vbk582bi1d1nhhzlxw705s7z7qsbrky-lifted-async-0.10.2.7/nix-support:
689.89 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.90 s
[ghc-9.10.3-with-packages] /nix/store/6vbk582bi1d1nhhzlxw705s7z7qsbrky-lifted-async-0.10.2.7/nix-support:
689.90 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.90 s
[ghc-9.10.3-with-packages] /nix/store/9msj85qq1gvwhcz908sbiilrfrdhq3lp-mmorph-1.2.1/nix-support:
689.90 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.90 s
[ghc-9.10.3-with-packages] /nix/store/9msj85qq1gvwhcz908sbiilrfrdhq3lp-mmorph-1.2.1/nix-support:
689.90 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.90 s
[ghc-9.10.3-with-packages] /nix/store/iillknnvv4x7b9m8853wgpj95fn6k2qf-monad-control-1.0.3.1/nix-support:
689.90 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.90 s
[ghc-9.10.3-with-packages] /nix/store/iillknnvv4x7b9m8853wgpj95fn6k2qf-monad-control-1.0.3.1/nix-support:
689.90 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.90 s
[ghc-9.10.3-with-packages] /nix/store/cfiih3l00fil2vi6fpvjxl1kll55h6j4-pretty-show-1.10/nix-support:
689.90 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.91 s
[ghc-9.10.3-with-packages] /nix/store/cfiih3l00fil2vi6fpvjxl1kll55h6j4-pretty-show-1.10/nix-support:
689.91 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.91 s
[ghc-9.10.3-with-packages] /nix/store/27n162kkviz2zwcsb1xc8hcwc8c9km67-primitive-0.9.1.0/nix-support:
689.91 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.92 s
[ghc-9.10.3-with-packages] /nix/store/27n162kkviz2zwcsb1xc8hcwc8c9km67-primitive-0.9.1.0/nix-support:
689.92 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.92 s
[ghc-9.10.3-with-packages] /nix/store/rsqv6kj134cgiyf311k8950imffs712n-random-1.2.1.3/nix-support:
689.92 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.92 s
[ghc-9.10.3-with-packages] /nix/store/rsqv6kj134cgiyf311k8950imffs712n-random-1.2.1.3/nix-support:
689.92 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.92 s
[ghc-9.10.3-with-packages] /nix/store/9gwczd0aw4yasspbyrggw32lgagp7q9f-resourcet-1.3.0/nix-support:
689.92 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.93 s
[ghc-9.10.3-with-packages] /nix/store/9gwczd0aw4yasspbyrggw32lgagp7q9f-resourcet-1.3.0/nix-support:
689.93 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.93 s
[ghc-9.10.3-with-packages] /nix/store/pfhmc6sgkrxknfzsl1hmnjkhvd0kwbcr-safe-exceptions-0.1.7.4/nix-support:
689.93 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.93 s
[ghc-9.10.3-with-packages] /nix/store/pfhmc6sgkrxknfzsl1hmnjkhvd0kwbcr-safe-exceptions-0.1.7.4/nix-support:
689.93 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.93 s
[ghc-9.10.3-with-packages] /nix/store/wb64jk3cmlv16vk3bxjcj9jd6021zad9-transformers-base-0.4.6/nix-support:
689.93 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.94 s
[ghc-9.10.3-with-packages] /nix/store/wb64jk3cmlv16vk3bxjcj9jd6021zad9-transformers-base-0.4.6/nix-support:
689.94 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.94 s
[ghc-9.10.3-with-packages] /nix/store/zjpkhy93qrkndn8ba1j1bs2270gzx36k-wl-pprint-annotated-0.1.0.1/nix-support:
689.94 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.94 s
[ghc-9.10.3-with-packages] /nix/store/zjpkhy93qrkndn8ba1j1bs2270gzx36k-wl-pprint-annotated-0.1.0.1/nix-support:
689.94 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.94 s
[ghc-9.10.3-with-packages] /nix/store/dn2zldw6k1a7hxqi0fs8n1zdfzfpg1rj-ansi-terminal-types-1.1.3/nix-support:
689.94 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.94 s
[ghc-9.10.3-with-packages] /nix/store/dn2zldw6k1a7hxqi0fs8n1zdfzfpg1rj-ansi-terminal-types-1.1.3/nix-support:
689.94 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.95 s
[ghc-9.10.3-with-packages] /nix/store/r3rsmiyfdiww3xw1jqx6rjz1k1fhzk5i-hashable-1.5.0.0/nix-support:
689.95 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.95 s
[ghc-9.10.3-with-packages] /nix/store/r3rsmiyfdiww3xw1jqx6rjz1k1fhzk5i-hashable-1.5.0.0/nix-support:
689.95 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.96 s
[ghc-9.10.3-with-packages] /nix/store/lcn9ndq73wfbx5fki5z4dsnskysqnx92-distributive-0.6.2.1/nix-support:
689.96 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.96 s
[ghc-9.10.3-with-packages] /nix/store/lcn9ndq73wfbx5fki5z4dsnskysqnx92-distributive-0.6.2.1/nix-support:
689.96 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.97 s
[ghc-9.10.3-with-packages] /nix/store/qcbcryh3b168hrs77lyr1a25dika56x0-constraints-0.14.2/nix-support:
689.97 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.97 s
[ghc-9.10.3-with-packages] /nix/store/qcbcryh3b168hrs77lyr1a25dika56x0-constraints-0.14.2/nix-support:
689.97 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.97 s
[ghc-9.10.3-with-packages] /nix/store/48csrd1s2gzcpf3d3s4j6g5052ya8n4w-lifted-base-0.2.3.12/nix-support:
689.97 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.97 s
[ghc-9.10.3-with-packages] /nix/store/48csrd1s2gzcpf3d3s4j6g5052ya8n4w-lifted-base-0.2.3.12/nix-support:
689.97 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.98 s
[ghc-9.10.3-with-packages] /nix/store/g5b8zbiw0dqhh2ckjz664ir10qljfvcy-transformers-compat-0.7.2/nix-support:
689.98 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.98 s
[ghc-9.10.3-with-packages] /nix/store/g5b8zbiw0dqhh2ckjz664ir10qljfvcy-transformers-compat-0.7.2/nix-support:
689.98 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.99 s
[ghc-9.10.3-with-packages] /nix/store/fac3a4hwqmhgmmx1ra67rf82sf77hmxh-splitmix-0.1.3.1/nix-support:
689.99 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.99 s
[ghc-9.10.3-with-packages] /nix/store/fac3a4hwqmhgmmx1ra67rf82sf77hmxh-splitmix-0.1.3.1/nix-support:
689.99 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.99 s
[ghc-9.10.3-with-packages] /nix/store/llbg63zgzyrq17fwz7q1y1vqnj6vj2fa-unliftio-core-0.2.1.0/nix-support:
689.99 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
689.99 s
[ghc-9.10.3-with-packages] /nix/store/llbg63zgzyrq17fwz7q1y1vqnj6vj2fa-unliftio-core-0.2.1.0/nix-support:
689.99 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
690.00 s
[ghc-9.10.3-with-packages] /nix/store/pamck590w5lych1dj4j31s57plvxb7pf-base-orphans-0.9.3/nix-support:
690.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
690.00 s
[ghc-9.10.3-with-packages] /nix/store/pamck590w5lych1dj4j31s57plvxb7pf-base-orphans-0.9.3/nix-support:
690.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
690.00 s
[ghc-9.10.3-with-packages] /nix/store/l6b1in1yfspmhzs386qa4yvdd1yw5d3v-tagged-0.8.9/nix-support:
690.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
690.00 s
[ghc-9.10.3-with-packages] /nix/store/l6b1in1yfspmhzs386qa4yvdd1yw5d3v-tagged-0.8.9/nix-support:
690.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
690.00 s
[ghc-9.10.3-with-packages] /nix/store/hykvsy2hdb9issxg3xm8ah8z48f7h30w-boring-0.2.2/nix-support:
690.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
690.01 s
[ghc-9.10.3-with-packages] /nix/store/hykvsy2hdb9issxg3xm8ah8z48f7h30w-boring-0.2.2/nix-support:
690.01 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/bkzbp002lzhcsxal1wqrl9y965nvfw2x-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
690.98 s
[ghc-9.10.3-with-packages] Warning: include-dirs: /nix/store/bcwhbqlv73axa65rnzjz500hfcycvrxs-ghc-9.10.3-with-packages/lib/ghc-9.10.3/lib/../lib/x86_64-linux-ghc-9.10.3/directory-1.3.8.5-c84a/include doesn't exist or isn't a directory
692.20 s
[ghc-9.10.3-with-packages:post-build] Uploading to cachix cache "sellout": /nix/store/bcwhbqlv73axa65rnzjz500hfcycvrxs-ghc-9.10.3-with-packages
692.80 s
[ghc-9.10.3-with-packages:post-build] Pushing 1 paths (144 are already present) using zstd to cache sellout ⏳
692.80 s
[ghc-9.10.3-with-packages:post-build]
693.16 s
[ghc-9.10.3-with-packages:post-build] Pushing /nix/store/bcwhbqlv73axa65rnzjz500hfcycvrxs-ghc-9.10.3-with-packages (4.95 MiB)
694.87 s
[ghc-9.10.3-with-packages:post-build]
694.87 s
[ghc-9.10.3-with-packages:post-build] All done.
694.88 s
[ghc-9.10.3-with-packages:post-build] Uploading to the NixCI cache: /nix/store/bcwhbqlv73axa65rnzjz500hfcycvrxs-ghc-9.10.3-with-packages
694.93 s
[ghc-9.10.3-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
695.14 s
[ghc-9.10.3-with-packages:post-build] copying 1 paths...
695.15 s
[ghc-9.10.3-with-packages:post-build] copying path '/nix/store/bcwhbqlv73axa65rnzjz500hfcycvrxs-ghc-9.10.3-with-packages' to 'https://cache.nix-ci.com'...
696.38 s
[ghc-9.10.3-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
696.63 s
[ghc-9.10.3-with-packages:post-build] copying 1 paths...
696.63 s
[ghc-9.10.3-with-packages:post-build] copying path '/nix/store/1xihsvk0rgmw0jc33wyimrlylp6ma87b-ghc-9.10.3-with-packages.drv' to 'https://cache.nix-ci.com'...
696.88 s
Progress: 12 of 14 built, 36 of 36 downloaded from cache
696.93 s
Building /nix/store/00m16dy0iydkipqgflspyiwwafn4mnaf-all-packages.drv
696.99 s
[all-packages] created 3 symlinks in user environment
697.03 s
[all-packages:post-build] Uploading to cachix cache "sellout": /nix/store/9xi8vbgphx6pmc809n9mwbakjylpry1v-all-packages
697.59 s
[all-packages:post-build] Pushing 1 paths (145 are already present) using zstd to cache sellout ⏳
697.59 s
[all-packages:post-build]
697.95 s
[all-packages:post-build] Pushing /nix/store/9xi8vbgphx6pmc809n9mwbakjylpry1v-all-packages (872.00 B)
699.15 s
[all-packages:post-build]
699.15 s
[all-packages:post-build] All done.
699.17 s
[all-packages:post-build] Uploading to the NixCI cache: /nix/store/9xi8vbgphx6pmc809n9mwbakjylpry1v-all-packages
699.22 s
[all-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
699.44 s
[all-packages:post-build] copying 1 paths...
699.44 s
[all-packages:post-build] copying path '/nix/store/9xi8vbgphx6pmc809n9mwbakjylpry1v-all-packages' to 'https://cache.nix-ci.com'...
699.75 s
[all-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
699.98 s
[all-packages:post-build] copying 1 paths...
699.98 s
[all-packages:post-build] copying path '/nix/store/00m16dy0iydkipqgflspyiwwafn4mnaf-all-packages.drv' to 'https://cache.nix-ci.com'...
700.23 s
Progress: 13 of 14 built, 36 of 36 downloaded from cache
700.23 s
Progress: 14 of 14 built, 36 of 36 downloaded from cache
700.23 s
/nix/store/9xi8vbgphx6pmc809n9mwbakjylpry1v-all-packages
700.24 s
Build succeeded.