build packages.x86_64-linux.ghc9101_all
1270.38 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
1270.38 s
[algebraic-graphs]
1270.38 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlay ============
1270.38 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
1270.38 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
1270.38 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
1270.38 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
1270.38 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
1270.39 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
1270.39 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
1270.39 s
[algebraic-graphs]
1270.39 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connect ============
1270.39 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
1270.39 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
1270.39 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
1270.39 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
1270.39 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
1270.39 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
1270.39 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
1270.39 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
1270.39 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
1270.39 s
[algebraic-graphs]
1270.39 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertices1 ============
1270.39 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
1270.39 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
1270.39 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
1270.39 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
1270.39 s
[algebraic-graphs]
1270.39 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edges1 ============
1270.39 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
1270.39 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
1270.39 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
1270.39 s
[algebraic-graphs]
1274.94 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlays1 ============
1274.94 s
[algebraic-graphs] OK: overlays1 [x] == x
1274.94 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
1274.94 s
[algebraic-graphs]
1274.94 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connects1 ============
1274.94 s
[algebraic-graphs] OK: connects1 [x] == x
1274.94 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
1274.94 s
[algebraic-graphs]
1274.94 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.isSubgraphOf ============
1274.94 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
1274.94 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
1274.94 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
1274.94 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
1274.94 s
[algebraic-graphs]
1274.94 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasVertex ============
1274.94 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1274.94 s
[algebraic-graphs]
1274.94 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasEdge ============
1274.94 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
1274.94 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1274.94 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
1274.94 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
1274.94 s
[algebraic-graphs]
1274.94 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexCount ============
1274.94 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1274.94 s
[algebraic-graphs] OK: vertexCount x >= 1
1274.94 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
1274.94 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeCount ============
1274.95 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1274.95 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1274.95 s
[algebraic-graphs] OK: edgeCount == length . edgeList
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexList1 ============
1274.95 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
1274.95 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeList ============
1274.95 s
[algebraic-graphs] OK: edgeList (vertex x) == []
1274.95 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
1274.95 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
1274.95 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
1274.95 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexSet ============
1274.95 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
1274.95 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
1274.95 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeSet ============
1274.95 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
1274.95 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
1274.95 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.preSet ============
1274.95 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
1274.95 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
1274.95 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.postSet ============
1274.95 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
1274.95 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
1274.95 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.path1 ============
1274.95 s
[algebraic-graphs] OK: path1 [x] == vertex x
1274.95 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
1274.95 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.circuit1 ============
1274.95 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
1274.95 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
1274.95 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.clique1 ============
1274.95 s
[algebraic-graphs] OK: clique1 [x] == vertex x
1274.95 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
1274.95 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
1274.95 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
1274.95 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.biclique1 ============
1274.95 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
1274.95 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.star ============
1274.95 s
[algebraic-graphs] OK: star x [] == vertex x
1274.95 s
[algebraic-graphs] OK: star x [y] == edge x y
1274.95 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.stars1 ============
1274.95 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
1274.95 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
1274.95 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
1274.95 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
1274.95 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.tree ============
1274.95 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
1274.95 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
1274.95 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
1274.95 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeVertex1 ============
1274.95 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
1274.95 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
1274.95 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
1274.95 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
1274.95 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeEdge ============
1274.95 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
1274.95 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
1274.95 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
1274.95 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.replaceVertex ============
1274.95 s
[algebraic-graphs] OK: replaceVertex x x == id
1274.95 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
1274.95 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.mergeVertices ============
1274.95 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
1274.95 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
1274.95 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
1274.95 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transpose ============
1274.95 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
1274.95 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
1274.95 s
[algebraic-graphs] OK: transpose . transpose == id
1274.95 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.gmap ============
1274.95 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
1274.95 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
1274.95 s
[algebraic-graphs] OK: gmap id == id
1274.95 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induce1 ============
1274.95 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
1274.95 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
1274.95 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
1274.95 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induceJust1 ============
1274.95 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
1274.95 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
1274.95 s
[algebraic-graphs] OK: induceJust1 . gmap Just == Just
1274.95 s
[algebraic-graphs] OK: induceJust1 . gmap (\x -> if p x then Just x else Nothing) == induce1 p
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.closure ============
1274.95 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
1274.95 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
1274.95 s
[algebraic-graphs] OK: closure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
1274.95 s
[algebraic-graphs] OK: closure (path1 $ nub xs) == reflexiveClosure (clique1 $ nub xs)
1274.95 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
1274.95 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
1274.95 s
[algebraic-graphs] OK: closure . closure == closure
1274.95 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.reflexiveClosure ============
1274.95 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
1274.95 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
1274.95 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
1274.95 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.symmetricClosure ============
1274.95 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
1274.95 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges1 [(x,y), (y,x)]
1274.95 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
1274.95 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
1274.95 s
[algebraic-graphs]
1274.95 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transitiveClosure ============
1274.95 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
1274.96 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
1274.96 s
[algebraic-graphs] OK: transitiveClosure (path1 $ nub xs) == clique1 (nub $ xs)
1274.96 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
1274.96 s
[algebraic-graphs]
1274.96 s
[algebraic-graphs] ============ NonEmpty.Graph.============
1274.96 s
[algebraic-graphs] OK: Axioms of non-empty graphs
1274.96 s
[algebraic-graphs] OK: Theorems of non-empty graphs
1274.96 s
[algebraic-graphs]
1274.96 s
[algebraic-graphs] ============ Ord (NonEmpty.Graph a) ============
1274.96 s
[algebraic-graphs] OK: vertex 1 < vertex 2
1274.96 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
1274.96 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
1274.96 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
1274.96 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
1274.96 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
1274.96 s
[algebraic-graphs] OK: x <= x + y
1274.96 s
[algebraic-graphs] OK: x + y <= x * y
1274.96 s
[algebraic-graphs]
1274.96 s
[algebraic-graphs] ============ Functor (NonEmpty.Graph a) ============
1274.96 s
[algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
1274.96 s
[algebraic-graphs] OK: fmap f (edge x y) == edge (f x) (f y)
1274.96 s
[algebraic-graphs] OK: fmap id == id
1274.96 s
[algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
1274.96 s
[algebraic-graphs]
1274.96 s
[algebraic-graphs] ============ Monad (NonEmpty.Graph a) ============
1274.96 s
[algebraic-graphs] OK: (vertex x >>= f) == f x
1277.62 s
[algebraic-graphs] OK: (edge x y >>= f) == connect (f x) (f y)
1277.62 s
[algebraic-graphs] OK: (vertices1 xs >>= f) == overlays1 (fmap f xs)
1277.65 s
[algebraic-graphs] OK: (x >>= vertex) == x
1277.65 s
[algebraic-graphs] OK: ((x >>= f) >>= g) == (x >>= (\y -> (f y) >>= g))
1277.65 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.toNonEmpty ============
1277.66 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
1277.66 s
[algebraic-graphs] OK: toNonEmpty (toGraph x) == Just (x :: NonEmpty.Graph a)
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.vertex ============
1277.66 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1277.66 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1277.66 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1277.66 s
[algebraic-graphs] OK: size (vertex x) == 1
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.edge ============
1277.66 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
1277.66 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1277.66 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1277.66 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
1277.66 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay ============
1277.66 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
1277.66 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
1277.66 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
1277.66 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
1277.66 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
1277.66 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
1277.66 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
1277.66 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay1 ============
1277.66 s
[algebraic-graphs] OK: overlay1 empty x == x
1277.66 s
[algebraic-graphs] OK: x /= empty ==> overlay1 x y == overlay (fromJust $ toNonEmpty x) y
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.connect ============
1277.66 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
1277.66 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
1277.66 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
1277.66 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
1277.66 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
1277.66 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
1277.66 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
1277.66 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
1277.66 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
1277.66 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.vertices1 ============
1277.66 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
1277.66 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
1277.66 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
1277.66 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.edges1 ============
1277.66 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
1277.66 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
1277.66 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.overlays1 ============
1277.66 s
[algebraic-graphs] OK: overlays1 [x] == x
1277.66 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.connects1 ============
1277.66 s
[algebraic-graphs] OK: connects1 [x] == x
1277.66 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.foldg1 ============
1277.66 s
[algebraic-graphs] OK: foldg1 vertex overlay connect == id
1277.66 s
[algebraic-graphs] OK: foldg1 vertex overlay (flip connect) == transpose
1277.66 s
[algebraic-graphs] OK: foldg1 (const 1) (+) (+) == size
1277.66 s
[algebraic-graphs] OK: foldg1 (== x) (||) (||) == hasVertex x
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.isSubgraphOf ============
1277.66 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
1277.66 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
1277.66 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
1277.66 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.(===) ============
1277.66 s
[algebraic-graphs] OK: x === x == True
1277.66 s
[algebraic-graphs] OK: x + y === x + y == True
1277.66 s
[algebraic-graphs] OK: 1 + 2 === 2 + 1 == False
1277.66 s
[algebraic-graphs] OK: x + y === x * y == False
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.size ============
1277.66 s
[algebraic-graphs] OK: size (vertex x) == 1
1277.66 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
1277.66 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
1277.66 s
[algebraic-graphs] OK: size x >= 1
1277.66 s
[algebraic-graphs] OK: size x >= vertexCount x
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.hasVertex ============
1277.66 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.hasEdge ============
1277.66 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
1277.66 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1277.66 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
1277.66 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexCount ============
1277.66 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1277.66 s
[algebraic-graphs] OK: vertexCount x >= 1
1277.66 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeCount ============
1277.66 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1277.66 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1277.66 s
[algebraic-graphs] OK: edgeCount == length . edgeList
1277.66 s
[algebraic-graphs]
1277.66 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexList1 ============
1277.66 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
1277.66 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
1277.66 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeList ============
1277.67 s
[algebraic-graphs] OK: edgeList (vertex x) == []
1277.67 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
1277.67 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
1277.67 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
1277.67 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexSet ============
1277.67 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
1277.67 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
1277.67 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeSet ============
1277.67 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
1277.67 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
1277.67 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.path1 ============
1277.67 s
[algebraic-graphs] OK: path1 [x] == vertex x
1277.67 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
1277.67 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.circuit1 ============
1277.67 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
1277.67 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
1277.67 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.clique1 ============
1277.67 s
[algebraic-graphs] OK: clique1 [x] == vertex x
1277.67 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
1277.67 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
1277.67 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
1277.67 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.biclique1 ============
1277.67 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
1277.67 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.star ============
1277.67 s
[algebraic-graphs] OK: star x [] == vertex x
1277.67 s
[algebraic-graphs] OK: star x [y] == edge x y
1277.67 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.stars1 ============
1277.67 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
1277.67 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
1277.67 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
1277.67 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
1277.67 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.tree ============
1277.67 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
1277.67 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
1277.67 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
1277.67 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.mesh1 ============
1277.67 s
[algebraic-graphs] OK: mesh1 [x] [y] == vertex (x, y)
1277.67 s
[algebraic-graphs] OK: mesh1 xs ys == box (path1 xs) (path1 ys)
1277.67 s
[algebraic-graphs] OK: mesh1 [1,2,3] ['a', 'b'] == <correct result>
1277.67 s
[algebraic-graphs] OK: size (mesh xs ys) == max 1 (3 * length xs * length ys - length xs - length ys -1)
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.torus1 ============
1277.67 s
[algebraic-graphs] OK: torus1 [x] [y] == edge (x,y) (x,y)
1277.67 s
[algebraic-graphs] OK: torus1 xs ys == box (circuit1 xs) (circuit1 ys)
1277.67 s
[algebraic-graphs] OK: torus1 [1,2] ['a', 'b'] == <correct result>
1277.67 s
[algebraic-graphs] OK: size (torus1 xs ys) == max 1 (3 * length xs * length ys)
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.removeVertex1 ============
1277.67 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
1277.67 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
1277.67 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
1277.67 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
1277.67 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.removeEdge ============
1277.67 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
1277.67 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
1277.67 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
1277.67 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
1277.67 s
[algebraic-graphs] OK: size (removeEdge x y z) <= 3 * size z
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.replaceVertex ============
1277.67 s
[algebraic-graphs] OK: replaceVertex x x == id
1277.67 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
1277.67 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
1277.67 s
[algebraic-graphs]
1277.67 s
[algebraic-graphs] ============ NonEmpty.Graph.mergeVertices ============
1277.67 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
1288.56 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
1288.56 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
1288.61 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
1288.61 s
[algebraic-graphs]
1288.61 s
[algebraic-graphs] ============ NonEmpty.Graph.splitVertex1 ============
1288.61 s
[algebraic-graphs] OK: splitVertex1 x [x] == id
1288.61 s
[algebraic-graphs] OK: splitVertex1 x [y] == replaceVertex x y
1288.61 s
[algebraic-graphs] OK: splitVertex1 1 [0,1] $ 1 * (2 + 3) == (0 + 1) * (2 + 3)
1288.61 s
[algebraic-graphs]
1288.61 s
[algebraic-graphs] ============ NonEmpty.Graph.transpose ============
1288.61 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
1288.61 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
1288.61 s
[algebraic-graphs] OK: transpose . transpose == id
1288.61 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
1288.61 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
1288.61 s
[algebraic-graphs]
1288.61 s
[algebraic-graphs] ============ NonEmpty.Graph.induce1 ============
1288.61 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
1288.61 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
1288.61 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
1288.61 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
1288.61 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ NonEmpty.Graph.induceJust1 ============
1288.62 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
1288.62 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
1288.62 s
[algebraic-graphs] OK: induceJust1 . fmap Just == Just
1288.62 s
[algebraic-graphs] OK: induceJust1 . fmap (\x -> if p x then Just x else Nothing) == induce1 p
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ NonEmpty.Graph.simplify ============
1288.62 s
[algebraic-graphs] OK: simplify == id
1288.62 s
[algebraic-graphs] OK: size (simplify x) <= size x
1288.62 s
[algebraic-graphs] OK: simplify 1 === 1
1288.62 s
[algebraic-graphs] OK: simplify (1 + 1) === 1
1288.62 s
[algebraic-graphs] OK: simplify (1 + 2 + 1) === 1 + 2
1288.62 s
[algebraic-graphs] OK: simplify (1 * 1 * 1) === 1 * 1
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsify ============
1288.62 s
[algebraic-graphs] OK: sort . reachable x == sort . rights . reachable (sparsify x) . Right
1288.62 s
[algebraic-graphs] OK: vertexCount (sparsify x) <= vertexCount x + size x + 1
1288.62 s
[algebraic-graphs] OK: edgeCount (sparsify x) <= 3 * size x
1288.62 s
[algebraic-graphs] OK: size (sparsify x) <= 3 * size x
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsifyKL ============
1288.62 s
[algebraic-graphs] OK: sort . reachable x == sort . filter (<= n) . reachable (sparsifyKL n x)
1288.62 s
[algebraic-graphs] OK: length (vertices $ sparsifyKL n x) <= vertexCount x + size x + 1
1288.62 s
[algebraic-graphs] OK: length (edges $ sparsifyKL n x) <= 3 * size x
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ NonEmpty.Graph.box ============
1288.62 s
[algebraic-graphs] OK: box (path1 [0,1]) (path1 ['a','b']) == <correct result>
1288.62 s
[algebraic-graphs] OK: box x y ~~ box y x
1288.62 s
[algebraic-graphs] OK: box x (overlay y z) == overlay (box x y) (box x z)
1288.62 s
[algebraic-graphs] OK: box x (vertex ()) ~~ x
1288.62 s
[algebraic-graphs] OK: box x (box y z) ~~ box (box x y) z
1288.62 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
1288.62 s
[algebraic-graphs] OK: vertexCount (box x y) == vertexCount x * vertexCount y
1288.62 s
[algebraic-graphs] OK: edgeCount (box x y) <= vertexCount x * edgeCount y + edgeCount x * vertexCount y
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation ============
1288.62 s
[algebraic-graphs] OK: Axioms of graphs
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.consistent ============
1288.62 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] OK: consistent empty == True
1288.62 s
[algebraic-graphs] OK: consistent (vertex x) == True
1288.62 s
[algebraic-graphs] OK: consistent (overlay x y) == True
1288.62 s
[algebraic-graphs] OK: consistent (connect x y) == True
1288.62 s
[algebraic-graphs] OK: consistent (edge x y) == True
1288.62 s
[algebraic-graphs] OK: consistent (edges xs) == True
1288.62 s
[algebraic-graphs] OK: consistent (stars xs) == True
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.Show ============
1288.62 s
[algebraic-graphs] OK: show (empty ) == "empty"
1288.62 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
1288.62 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
1288.62 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
1288.62 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
1288.62 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
1288.62 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
1288.62 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
1288.62 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
1288.62 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.Ord ============
1288.62 s
[algebraic-graphs] OK: vertex 1 < vertex 2
1288.62 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
1288.62 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
1288.62 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
1288.62 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
1288.62 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
1288.62 s
[algebraic-graphs] OK: x <= x + y
1288.62 s
[algebraic-graphs] OK: x + y <= x * y
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.empty ============
1288.62 s
[algebraic-graphs] OK: isEmpty empty == True
1288.62 s
[algebraic-graphs] OK: hasVertex x empty == False
1288.62 s
[algebraic-graphs] OK: vertexCount empty == 0
1288.62 s
[algebraic-graphs] OK: edgeCount empty == 0
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.vertex ============
1288.62 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
1288.62 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1288.62 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1288.62 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.edge ============
1288.62 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
1288.62 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1288.62 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1288.62 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
1288.62 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.overlay ============
1288.62 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
1288.62 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
1288.62 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
1288.62 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
1288.62 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
1288.62 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
1288.62 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
1288.62 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.connect ============
1288.62 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
1288.62 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
1288.62 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
1288.62 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
1288.62 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
1288.62 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
1288.62 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
1288.62 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
1288.62 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
1288.62 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.vertices ============
1288.62 s
[algebraic-graphs] OK: vertices [] == empty
1288.62 s
[algebraic-graphs] OK: vertices [x] == vertex x
1288.62 s
[algebraic-graphs] OK: vertices == overlays . map vertex
1288.62 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
1288.62 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
1288.62 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.edges ============
1288.62 s
[algebraic-graphs] OK: edges [] == empty
1288.62 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
1288.62 s
[algebraic-graphs] OK: edges == overlays . map (uncurry edge)
1288.62 s
[algebraic-graphs] OK: edgeCount . edges == length . nub
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.overlays ============
1288.62 s
[algebraic-graphs] OK: overlays [] == empty
1288.62 s
[algebraic-graphs] OK: overlays [x] == x
1288.62 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
1288.62 s
[algebraic-graphs] OK: overlays == foldr overlay empty
1288.62 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.connects ============
1288.62 s
[algebraic-graphs] OK: connects [] == empty
1288.62 s
[algebraic-graphs] OK: connects [x] == x
1288.62 s
[algebraic-graphs] OK: connects [x,y] == connect x y
1288.62 s
[algebraic-graphs] OK: connects == foldr connect empty
1288.62 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.isSubgraphOf ============
1288.62 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
1288.62 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
1288.62 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
1288.62 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
1288.62 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
1288.62 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
1288.62 s
[algebraic-graphs]
1288.62 s
[algebraic-graphs] ============ Relation.toGraph et al. ============
1288.62 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
1288.62 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
1288.62 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
1288.62 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
1288.62 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
1288.62 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
1288.62 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
1288.62 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
1288.62 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
1288.62 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
1288.62 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
1288.62 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
1288.62 s
[algebraic-graphs] OK: edgeSet == Algebra.Graph.AdjacencyMap.edgeSet . foldg empty vertex overlay connect
1288.62 s
[algebraic-graphs] OK: preSet x == Algebra.Graph.AdjacencyMap.preSet x . toAdjacencyMap
1288.62 s
[algebraic-graphs] OK: preIntSet x == Algebra.Graph.AdjacencyIntMap.preIntSet x . toAdjacencyIntMap
1288.62 s
[algebraic-graphs] OK: postSet x == Algebra.Graph.AdjacencyMap.postSet x . toAdjacencyMap
1288.62 s
[algebraic-graphs] OK: postIntSet x == Algebra.Graph.AdjacencyIntMap.postIntSet x . toAdjacencyIntMap
1292.67 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
1292.67 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
1292.67 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
1292.67 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
1292.67 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
1292.67 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
1292.67 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
1292.67 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
1292.67 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.foldg ============
1292.67 s
[algebraic-graphs] OK: foldg empty vertex overlay connect == id
1292.67 s
[algebraic-graphs] OK: foldg empty vertex overlay (flip connect) == transpose
1292.67 s
[algebraic-graphs] OK: foldg 1 (const 1) (+) (+) == size
1292.67 s
[algebraic-graphs] OK: foldg True (const False) (&&) (&&) == isEmpty
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.isEmpty ============
1292.67 s
[algebraic-graphs] OK: isEmpty empty == True
1292.67 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
1292.67 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
1292.67 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
1292.67 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.hasVertex ============
1292.67 s
[algebraic-graphs] OK: hasVertex x empty == False
1292.67 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1292.67 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.hasEdge ============
1292.67 s
[algebraic-graphs] OK: hasEdge x y empty == False
1292.67 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
1292.67 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1292.67 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
1292.67 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.vertexCount ============
1292.67 s
[algebraic-graphs] OK: vertexCount empty == 0
1292.67 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1292.67 s
[algebraic-graphs] OK: vertexCount == length . vertexList
1292.67 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.edgeCount ============
1292.67 s
[algebraic-graphs] OK: edgeCount empty == 0
1292.67 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1292.67 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1292.67 s
[algebraic-graphs] OK: edgeCount == length . edgeList
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.vertexList ============
1292.67 s
[algebraic-graphs] OK: vertexList empty == []
1292.67 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
1292.67 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.vertexSet ============
1292.67 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
1292.67 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
1292.67 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.vertexIntSet ============
1292.67 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
1292.67 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
1292.67 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
1292.67 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
1292.67 s
[algebraic-graphs]
1292.67 s
[algebraic-graphs] ============ Relation.edgeList ============
1292.67 s
[algebraic-graphs] OK: edgeList empty == []
1292.68 s
[algebraic-graphs] OK: edgeList (vertex x) == []
1292.68 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
1292.68 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
1292.68 s
[algebraic-graphs] OK: edgeList . edges == nub . sort
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.edgeSet ============
1292.68 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
1292.68 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
1292.68 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
1292.68 s
[algebraic-graphs] OK: edgeSet . edges == Set.fromList
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.adjacencyList ============
1292.68 s
[algebraic-graphs] OK: adjacencyList empty == []
1292.68 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
1292.68 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [])]
1292.68 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, []), (2, [1,3]), (3, [])]
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.preSet ============
1292.68 s
[algebraic-graphs] OK: preSet x empty == Set.empty
1292.68 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
1292.68 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
1292.68 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.preIntSet ============
1292.68 s
[algebraic-graphs] OK: preIntSet x empty == IntSet.empty
1292.68 s
[algebraic-graphs] OK: preIntSet x (vertex x) == IntSet.empty
1292.68 s
[algebraic-graphs] OK: preIntSet 1 (edge 1 2) == IntSet.empty
1292.68 s
[algebraic-graphs] OK: preIntSet y (edge x y) == IntSet.fromList [x]
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.postSet ============
1292.68 s
[algebraic-graphs] OK: postSet x empty == Set.empty
1292.68 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
1292.68 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
1292.68 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.postIntSet ============
1292.68 s
[algebraic-graphs] OK: postIntSet x empty == IntSet.empty
1292.68 s
[algebraic-graphs] OK: postIntSet x (vertex x) == IntSet.empty
1292.68 s
[algebraic-graphs] OK: postIntSet 2 (edge 1 2) == IntSet.empty
1292.68 s
[algebraic-graphs] OK: postIntSet x (edge x y) == IntSet.fromList [y]
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.path ============
1292.68 s
[algebraic-graphs] OK: path [] == empty
1292.68 s
[algebraic-graphs] OK: path [x] == vertex x
1292.68 s
[algebraic-graphs] OK: path [x,y] == edge x y
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.circuit ============
1292.68 s
[algebraic-graphs] OK: circuit [] == empty
1292.68 s
[algebraic-graphs] OK: circuit [x] == edge x x
1292.68 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.clique ============
1292.68 s
[algebraic-graphs] OK: clique [] == empty
1292.68 s
[algebraic-graphs] OK: clique [x] == vertex x
1292.68 s
[algebraic-graphs] OK: clique [x,y] == edge x y
1292.68 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
1292.68 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.biclique ============
1292.68 s
[algebraic-graphs] OK: biclique [] [] == empty
1292.68 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
1292.68 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
1292.68 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
1292.68 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.star ============
1292.68 s
[algebraic-graphs] OK: star x [] == vertex x
1292.68 s
[algebraic-graphs] OK: star x [y] == edge x y
1292.68 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
1292.68 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.stars ============
1292.68 s
[algebraic-graphs] OK: stars [] == empty
1292.68 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
1292.68 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
1292.68 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
1292.68 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
1292.68 s
[algebraic-graphs] OK: stars . adjacencyList == id
1292.68 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.tree ============
1292.68 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
1292.68 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
1292.68 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
1292.68 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.forest ============
1292.68 s
[algebraic-graphs] OK: forest [] == empty
1292.68 s
[algebraic-graphs] OK: forest [x] == tree x
1292.68 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
1292.68 s
[algebraic-graphs] OK: forest == overlays . map tree
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.removeVertex ============
1292.68 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
1292.68 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
1292.68 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
1292.68 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
1292.68 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.removeEdge ============
1292.68 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
1292.68 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
1292.68 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
1292.68 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
1292.68 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.replaceVertex ============
1292.68 s
[algebraic-graphs] OK: replaceVertex x x == id
1292.68 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
1292.68 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
1292.68 s
[algebraic-graphs]
1292.68 s
[algebraic-graphs] ============ Relation.mergeVertices ============
1292.68 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
1326.61 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
1326.61 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
1326.63 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
1326.63 s
[algebraic-graphs]
1326.63 s
[algebraic-graphs] ============ Relation.transpose ============
1326.63 s
[algebraic-graphs] OK: transpose empty == empty
1326.63 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
1326.63 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
1326.64 s
[algebraic-graphs] OK: transpose . transpose == id
1326.64 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Relation.gmap ============
1326.64 s
[algebraic-graphs] OK: gmap f empty == empty
1326.64 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
1326.64 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
1326.64 s
[algebraic-graphs] OK: gmap id == id
1326.64 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Relation.induce ============
1326.64 s
[algebraic-graphs] OK: induce (const True ) x == x
1326.64 s
[algebraic-graphs] OK: induce (const False) x == empty
1326.64 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
1326.64 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
1326.64 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Relation.compose ============
1326.64 s
[algebraic-graphs] OK: compose empty x == empty
1326.64 s
[algebraic-graphs] OK: compose x empty == empty
1326.64 s
[algebraic-graphs] OK: compose (vertex x) y == empty
1326.64 s
[algebraic-graphs] OK: compose x (vertex y) == empty
1326.64 s
[algebraic-graphs] OK: compose x (compose y z) == compose (compose x y) z
1326.64 s
[algebraic-graphs] OK: compose x (overlay y z) == overlay (compose x y) (compose x z)
1326.64 s
[algebraic-graphs] OK: compose (overlay x y) z == overlay (compose x z) (compose y z)
1326.64 s
[algebraic-graphs] OK: compose (edge x y) (edge y z) == edge x z
1326.64 s
[algebraic-graphs] OK: compose (path [1..5]) (path [1..5]) == edges [(1,3),(2,4),(3,5)]
1326.64 s
[algebraic-graphs] OK: compose (circuit [1..5]) (circuit [1..5]) == circuit [1,3,5,2,4]
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Relation.closure ============
1326.64 s
[algebraic-graphs] OK: closure empty == empty
1326.64 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
1326.64 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
1326.64 s
[algebraic-graphs] OK: closure (edge x y) == edges [(x,x), (x,y), (y,y)]
1326.64 s
[algebraic-graphs] OK: closure (path $ nub xs) == reflexiveClosure (clique $ nub xs)
1326.64 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
1326.64 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
1326.64 s
[algebraic-graphs] OK: closure . closure == closure
1326.64 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Relation.reflexiveClosure ============
1326.64 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
1326.64 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
1326.64 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
1326.64 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges [(x,x), (x,y), (y,y)]
1326.64 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Relation.symmetricClosure ============
1326.64 s
[algebraic-graphs] OK: symmetricClosure empty == empty
1326.64 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
1326.64 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges [(x,y), (y,x)]
1326.64 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
1326.64 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Relation.transitiveClosure ============
1326.64 s
[algebraic-graphs] OK: transitiveClosure empty == empty
1326.64 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
1326.64 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
1326.64 s
[algebraic-graphs] OK: transitiveClosure (path $ nub xs) == clique (nub $ xs)
1326.64 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Relation.induceJust ============
1326.64 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
1326.64 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
1326.64 s
[algebraic-graphs] OK: induceJust . gmap Just == id
1326.64 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ ReflexiveRelation ============
1326.64 s
[algebraic-graphs] OK: Axioms of reflexive graphs
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ TransitiveRelation ============
1326.64 s
[algebraic-graphs] OK: Axioms of transitive graphs
1326.64 s
[algebraic-graphs] OK: path xs == (clique xs :: TransitiveRelation Int)
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ PreorderRelation ============
1326.64 s
[algebraic-graphs] OK: Axioms of preorder graphs
1326.64 s
[algebraic-graphs] OK: path xs == (clique xs :: PreorderRelation Int)
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation ============
1326.64 s
[algebraic-graphs] OK: Axioms of undirected graphs
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.consistent ============
1326.64 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] OK: consistent empty == True
1326.64 s
[algebraic-graphs] OK: consistent (vertex x) == True
1326.64 s
[algebraic-graphs] OK: consistent (overlay x y) == True
1326.64 s
[algebraic-graphs] OK: consistent (connect x y) == True
1326.64 s
[algebraic-graphs] OK: consistent (edge x y) == True
1326.64 s
[algebraic-graphs] OK: consistent (edges xs) == True
1326.64 s
[algebraic-graphs] OK: consistent (stars xs) == True
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.Show ============
1326.64 s
[algebraic-graphs] OK: show (empty ) == "empty"
1326.64 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
1326.64 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
1326.64 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
1326.64 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
1326.64 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
1326.64 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
1326.64 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
1326.64 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
1326.64 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
1326.64 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
1326.64 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.toSymmetric ============
1326.64 s
[algebraic-graphs] OK: toSymmetric (edge 1 2) == edge 1 2
1326.64 s
[algebraic-graphs] OK: toSymmetric . fromSymmetric == id
1326.64 s
[algebraic-graphs] OK: fromSymmetric . toSymmetric == symmetricClosure
1326.64 s
[algebraic-graphs] OK: vertexCount . toSymmetric == vertexCount
1326.64 s
[algebraic-graphs] OK: (*2) . edgeCount . toSymmetric >= edgeCount
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.fromSymmetric ============
1326.64 s
[algebraic-graphs] OK: fromSymmetric (edge 1 2) == edges [(1,2), (2,1)]
1326.64 s
[algebraic-graphs] OK: vertexCount . fromSymmetric == vertexCount
1326.64 s
[algebraic-graphs] OK: edgeCount . fromSymmetric <= (*2) . edgeCount
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.Ord ============
1326.64 s
[algebraic-graphs] OK: vertex 1 < vertex 2
1326.64 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
1326.64 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
1326.64 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
1326.64 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
1326.64 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
1326.64 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
1326.64 s
[algebraic-graphs] OK: x <= x + y
1326.64 s
[algebraic-graphs] OK: x + y <= x * y
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.empty ============
1326.64 s
[algebraic-graphs] OK: isEmpty empty == True
1326.64 s
[algebraic-graphs] OK: hasVertex x empty == False
1326.64 s
[algebraic-graphs] OK: vertexCount empty == 0
1326.64 s
[algebraic-graphs] OK: edgeCount empty == 0
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.vertex ============
1326.64 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
1326.64 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1326.64 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1326.64 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.edge ============
1326.64 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
1326.64 s
[algebraic-graphs] OK: edge x y == edge y x
1326.64 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
1326.64 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1326.64 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1326.64 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
1326.64 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.overlay ============
1326.64 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
1326.64 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
1326.64 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
1326.64 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
1326.64 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
1326.64 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
1326.64 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
1326.64 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
1326.64 s
[algebraic-graphs]
1326.64 s
[algebraic-graphs] ============ Symmetric.Relation.connect ============
1326.64 s
[algebraic-graphs] OK: connect x y == connect y x
1326.64 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
1326.64 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
1326.64 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
1326.64 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
1326.64 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
1326.64 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
1326.65 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
1326.65 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
1326.65 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
1326.65 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
1326.65 s
[algebraic-graphs]
1326.65 s
[algebraic-graphs] ============ Symmetric.Relation.vertices ============
1326.65 s
[algebraic-graphs] OK: vertices [] == empty
1326.65 s
[algebraic-graphs] OK: vertices [x] == vertex x
1326.65 s
[algebraic-graphs] OK: vertices == overlays . map vertex
1326.65 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
1326.65 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
1326.65 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
1326.65 s
[algebraic-graphs]
1326.65 s
[algebraic-graphs] ============ Symmetric.Relation.edges ============
1326.65 s
[algebraic-graphs] OK: edges [] == empty
1326.65 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
1326.65 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
1326.65 s
[algebraic-graphs]
1326.65 s
[algebraic-graphs] ============ Symmetric.Relation.overlays ============
1326.65 s
[algebraic-graphs] OK: overlays [] == empty
1351.67 s
[algebraic-graphs] OK: overlays [x] == x
1351.69 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
1351.69 s
[algebraic-graphs] OK: overlays == foldr overlay empty
1351.69 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.connects ============
1351.69 s
[algebraic-graphs] OK: connects [] == empty
1351.69 s
[algebraic-graphs] OK: connects [x] == x
1351.69 s
[algebraic-graphs] OK: connects [x,y] == connect x y
1351.69 s
[algebraic-graphs] OK: connects == foldr connect empty
1351.69 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
1351.69 s
[algebraic-graphs] OK: connects == connects . reverse
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.isSubgraphOf ============
1351.69 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
1351.69 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
1351.69 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
1351.69 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
1351.69 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
1351.69 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
1351.69 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.toGraph et al. ============
1351.69 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
1351.69 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
1351.69 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
1351.69 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
1351.69 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
1351.69 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
1351.69 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
1351.69 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
1351.69 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
1351.69 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
1351.69 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
1351.69 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
1351.69 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
1351.69 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
1351.69 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
1351.69 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
1351.69 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
1351.69 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
1351.69 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
1351.69 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
1351.69 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.isEmpty ============
1351.69 s
[algebraic-graphs] OK: isEmpty empty == True
1351.69 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
1351.69 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
1351.69 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
1351.69 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.hasVertex ============
1351.69 s
[algebraic-graphs] OK: hasVertex x empty == False
1351.69 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1351.69 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.hasEdge ============
1351.69 s
[algebraic-graphs] OK: hasEdge x y empty == False
1351.69 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
1351.69 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1351.69 s
[algebraic-graphs] OK: hasEdge x y (edge y x) == True
1351.69 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
1351.69 s
[algebraic-graphs] OK: hasEdge x y == elem (min x y, max x y) . edgeList
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.vertexCount ============
1351.69 s
[algebraic-graphs] OK: vertexCount empty == 0
1351.69 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1351.69 s
[algebraic-graphs] OK: vertexCount == length . vertexList
1351.69 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.edgeCount ============
1351.69 s
[algebraic-graphs] OK: edgeCount empty == 0
1351.69 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1351.69 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1351.69 s
[algebraic-graphs] OK: edgeCount == length . edgeList
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.vertexList ============
1351.69 s
[algebraic-graphs] OK: vertexList empty == []
1351.69 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
1351.69 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.vertexSet ============
1351.69 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
1351.69 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
1351.69 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
1351.69 s
[algebraic-graphs]
1351.69 s
[algebraic-graphs] ============ Symmetric.Relation.vertexIntSet ============
1351.69 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
1351.70 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
1351.70 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
1351.70 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.edgeList ============
1351.70 s
[algebraic-graphs] OK: edgeList empty == []
1351.70 s
[algebraic-graphs] OK: edgeList (vertex x) == []
1351.70 s
[algebraic-graphs] OK: edgeList (edge x y) == [(min x y, max y x)]
1351.70 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(1,2), (2,3)]
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.edgeSet ============
1351.70 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
1351.70 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
1351.70 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (min x y, max x y)
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.adjacencyList ============
1351.70 s
[algebraic-graphs] OK: adjacencyList empty == []
1351.70 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
1351.70 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [1])]
1351.70 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, [2]), (2, [1,3]), (3, [2])]
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.neighbours ============
1351.70 s
[algebraic-graphs] OK: neighbours x empty == Set.empty
1351.70 s
[algebraic-graphs] OK: neighbours x (vertex x) == Set.empty
1351.70 s
[algebraic-graphs] OK: neighbours x (edge x y) == Set.fromList [y]
1351.70 s
[algebraic-graphs] OK: neighbours y (edge x y) == Set.fromList [x]
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.path ============
1351.70 s
[algebraic-graphs] OK: path [] == empty
1351.70 s
[algebraic-graphs] OK: path [x] == vertex x
1351.70 s
[algebraic-graphs] OK: path [x,y] == edge x y
1351.70 s
[algebraic-graphs] OK: path == path . reverse
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.circuit ============
1351.70 s
[algebraic-graphs] OK: circuit [] == empty
1351.70 s
[algebraic-graphs] OK: circuit [x] == edge x x
1351.70 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
1351.70 s
[algebraic-graphs] OK: circuit == circuit . reverse
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.clique ============
1351.70 s
[algebraic-graphs] OK: clique [] == empty
1351.70 s
[algebraic-graphs] OK: clique [x] == vertex x
1351.70 s
[algebraic-graphs] OK: clique [x,y] == edge x y
1351.70 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
1351.70 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
1351.70 s
[algebraic-graphs] OK: clique == clique . reverse
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.biclique ============
1351.70 s
[algebraic-graphs] OK: biclique [] [] == empty
1351.70 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
1351.70 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
1351.70 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
1351.70 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.star ============
1351.70 s
[algebraic-graphs] OK: star x [] == vertex x
1351.70 s
[algebraic-graphs] OK: star x [y] == edge x y
1351.70 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
1351.70 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.stars ============
1351.70 s
[algebraic-graphs] OK: stars [] == empty
1351.70 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
1351.70 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
1351.70 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
1351.70 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
1351.70 s
[algebraic-graphs] OK: stars . adjacencyList == id
1351.70 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.tree ============
1351.70 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
1351.70 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
1351.70 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
1351.70 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
1351.70 s
[algebraic-graphs]
1351.70 s
[algebraic-graphs] ============ Symmetric.Relation.forest ============
1351.70 s
[algebraic-graphs] OK: forest [] == empty
1361.24 s
[algebraic-graphs] OK: forest [x] == tree x
1361.24 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
1361.25 s
[algebraic-graphs] OK: forest == overlays . map tree
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Symmetric.Relation.removeVertex ============
1361.25 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
1361.25 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
1361.25 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
1361.25 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
1361.25 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Symmetric.Relation.removeEdge ============
1361.25 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
1361.25 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
1361.25 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
1361.25 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
1361.25 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
1361.25 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Symmetric.Relation.replaceVertex ============
1361.25 s
[algebraic-graphs] OK: replaceVertex x x == id
1361.25 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
1361.25 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Symmetric.Relation.mergeVertices ============
1361.25 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
1361.25 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
1361.25 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
1361.25 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Symmetric.Relation.gmap ============
1361.25 s
[algebraic-graphs] OK: gmap f empty == empty
1361.25 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
1361.25 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
1361.25 s
[algebraic-graphs] OK: gmap id == id
1361.25 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Symmetric.Relation.induce ============
1361.25 s
[algebraic-graphs] OK: induce (const True ) x == x
1361.25 s
[algebraic-graphs] OK: induce (const False) x == empty
1361.25 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
1361.25 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
1361.25 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Symmetric.Relation.induceJust ============
1361.25 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
1361.25 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
1361.25 s
[algebraic-graphs] OK: induceJust . gmap Just == id
1361.25 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Example.Todo (Holiday) ============
1361.25 s
[algebraic-graphs] OK: A todo list is semantically Maybe [a]
1361.25 s
[algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
1361.25 s
[algebraic-graphs] OK: The connect operator (*) adds dependency between items
1361.25 s
[algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
1361.25 s
[algebraic-graphs] OK: Introduce item priority to schedule the todo list
1361.25 s
[algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Example.Todo (Commandline) ============
1361.25 s
[algebraic-graphs] OK: The pull connect operator maintains command line semantics
1361.25 s
[algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
1361.25 s
[algebraic-graphs] OK: The usual connect operator breaks semantics
1361.25 s
[algebraic-graphs] OK: Transform command lines by adding optimisation flag
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Typed ============
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Typed.fromAdjacencyMap ============
1361.25 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
1361.25 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
1361.25 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
1361.25 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
1361.25 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
1361.25 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
1361.25 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
1361.25 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Typed.dfsForest ============
1361.25 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
1361.25 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
1361.25 s
[algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
1361.25 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
1361.25 s
[algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
1361.25 s
[algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
1361.25 s
[algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Typed.dfsForestFrom ============
1361.25 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
1361.25 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
1361.25 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
1361.25 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
1361.25 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
1361.25 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
1361.25 s
[algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
1361.25 s
[algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
1361.25 s
[algebraic-graphs] OK: dfsForestFrom % x $ [] == []
1361.25 s
[algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Typed.dfs ============
1361.25 s
[algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
1361.25 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
1361.25 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
1361.25 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
1361.25 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
1361.25 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
1361.25 s
[algebraic-graphs] OK: dfs % x $ [] == []
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
1361.25 s
[algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Typed.topSort ============
1361.25 s
[algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
1361.25 s
[algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Graph.Undirected ============
1361.25 s
[algebraic-graphs] OK: Axioms of undirected graphs
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Graph.Undirected.Show ============
1361.25 s
[algebraic-graphs] OK: show (empty ) == "empty"
1361.25 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
1361.25 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
1361.25 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
1361.25 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
1361.25 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
1361.25 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
1361.25 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
1361.25 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
1361.25 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
1361.25 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
1361.25 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Graph.Undirected.toUndirected ============
1361.25 s
[algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
1361.25 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
1361.25 s
[algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
1361.25 s
[algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
1361.25 s
[algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
1361.25 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
1361.25 s
[algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
1361.25 s
[algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Graph.Undirected.complement ================
1361.25 s
[algebraic-graphs] OK: complement empty == empty
1361.25 s
[algebraic-graphs] OK: complement (vertex x) == vertex x
1361.25 s
[algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
1361.25 s
[algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
1361.25 s
[algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
1361.25 s
[algebraic-graphs] OK: complement . complement == id
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Graph.Undirected.Ord ============
1361.25 s
[algebraic-graphs] OK: vertex 1 < vertex 2
1361.25 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
1361.25 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
1361.25 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
1361.25 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
1361.25 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
1361.25 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
1361.25 s
[algebraic-graphs] OK: x <= x + y
1361.25 s
[algebraic-graphs] OK: x + y <= x * y
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Graph.Undirected.empty ============
1361.25 s
[algebraic-graphs] OK: isEmpty empty == True
1361.25 s
[algebraic-graphs] OK: hasVertex x empty == False
1361.25 s
[algebraic-graphs] OK: vertexCount empty == 0
1361.25 s
[algebraic-graphs] OK: edgeCount empty == 0
1361.25 s
[algebraic-graphs]
1361.25 s
[algebraic-graphs] ============ Graph.Undirected.vertex ============
1361.25 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
1361.26 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1361.26 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1361.26 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1361.26 s
[algebraic-graphs]
1361.26 s
[algebraic-graphs] ============ Graph.Undirected.edge ============
1361.26 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
1361.26 s
[algebraic-graphs] OK: edge x y == edge y x
1378.43 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
1378.43 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1378.43 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1378.44 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
1378.44 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
1378.44 s
[algebraic-graphs]
1378.44 s
[algebraic-graphs] ============ Graph.Undirected.overlay ============
1378.44 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
1378.44 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
1378.44 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
1378.44 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
1378.44 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
1378.44 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
1378.44 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
1378.44 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
1378.44 s
[algebraic-graphs]
1378.44 s
[algebraic-graphs] ============ Graph.Undirected.connect ============
1378.44 s
[algebraic-graphs] OK: connect x y == connect y x
1378.44 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
1378.45 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
1378.45 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
1378.45 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
1378.45 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
1378.45 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
1378.45 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
1378.45 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
1378.45 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
1378.45 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.vertices ============
1378.45 s
[algebraic-graphs] OK: vertices [] == empty
1378.45 s
[algebraic-graphs] OK: vertices [x] == vertex x
1378.45 s
[algebraic-graphs] OK: vertices == overlays . map vertex
1378.45 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
1378.45 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
1378.45 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.edges ============
1378.45 s
[algebraic-graphs] OK: edges [] == empty
1378.45 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
1378.45 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.overlays ============
1378.45 s
[algebraic-graphs] OK: overlays [] == empty
1378.45 s
[algebraic-graphs] OK: overlays [x] == x
1378.45 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
1378.45 s
[algebraic-graphs] OK: overlays == foldr overlay empty
1378.45 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.connects ============
1378.45 s
[algebraic-graphs] OK: connects [] == empty
1378.45 s
[algebraic-graphs] OK: connects [x] == x
1378.45 s
[algebraic-graphs] OK: connects [x,y] == connect x y
1378.45 s
[algebraic-graphs] OK: connects == foldr connect empty
1378.45 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
1378.45 s
[algebraic-graphs] OK: connects == connects . reverse
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
1378.45 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
1378.45 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
1378.45 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
1378.45 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
1378.45 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
1378.45 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
1378.45 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.path ============
1378.45 s
[algebraic-graphs] OK: path [] == empty
1378.45 s
[algebraic-graphs] OK: path [x] == vertex x
1378.45 s
[algebraic-graphs] OK: path [x,y] == edge x y
1378.45 s
[algebraic-graphs] OK: path == path . reverse
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.circuit ============
1378.45 s
[algebraic-graphs] OK: circuit [] == empty
1378.45 s
[algebraic-graphs] OK: circuit [x] == edge x x
1378.45 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
1378.45 s
[algebraic-graphs] OK: circuit == circuit . reverse
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.clique ============
1378.45 s
[algebraic-graphs] OK: clique [] == empty
1378.45 s
[algebraic-graphs] OK: clique [x] == vertex x
1378.45 s
[algebraic-graphs] OK: clique [x,y] == edge x y
1378.45 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
1378.45 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
1378.45 s
[algebraic-graphs] OK: clique == clique . reverse
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.biclique ============
1378.45 s
[algebraic-graphs] OK: biclique [] [] == empty
1378.45 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
1378.45 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
1378.45 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
1378.45 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.star ============
1378.45 s
[algebraic-graphs] OK: star x [] == vertex x
1378.45 s
[algebraic-graphs] OK: star x [y] == edge x y
1378.45 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
1378.45 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.stars ============
1378.45 s
[algebraic-graphs] OK: stars [] == empty
1378.45 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
1378.45 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
1378.45 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
1378.45 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
1378.45 s
[algebraic-graphs] OK: stars . adjacencyList == id
1378.45 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.tree ============
1378.45 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
1378.45 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
1378.45 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
1378.45 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.forest ============
1378.45 s
[algebraic-graphs] OK: forest [] == empty
1378.45 s
[algebraic-graphs] OK: forest [x] == tree x
1378.45 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
1378.45 s
[algebraic-graphs] OK: forest == overlays . map tree
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.removeVertex ============
1378.45 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
1378.45 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
1378.45 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
1378.45 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
1378.45 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.removeEdge ============
1378.45 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
1378.45 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
1378.45 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
1378.45 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
1378.45 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
1378.45 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
1378.45 s
[algebraic-graphs] OK: replaceVertex x x == id
1378.45 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
1378.45 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
1378.45 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
1378.45 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
1378.45 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
1378.45 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.gmap ============
1378.45 s
[algebraic-graphs] OK: gmap f empty == empty
1378.45 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
1378.45 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
1378.45 s
[algebraic-graphs] OK: gmap id == id
1378.45 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.induce ============
1378.45 s
[algebraic-graphs] OK: induce (const True ) x == x
1378.45 s
[algebraic-graphs] OK: induce (const False) x == empty
1378.45 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
1378.45 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
1378.45 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
1378.45 s
[algebraic-graphs]
1378.45 s
[algebraic-graphs] ============ Graph.Undirected.induceJust ============
1378.45 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
1378.45 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
1378.45 s
[algebraic-graphs] OK: induceJust . gmap Just == id
1378.45 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
1378.45 s
[algebraic-graphs] Test suite main: PASS
1378.45 s
[algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
1378.45 s
[algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
1378.45 s
[algebraic-graphs] checkPhase completed in 4 minutes 35 seconds
1378.46 s
[algebraic-graphs] Phase: haddockPhase
1378.77 s
[algebraic-graphs] Preprocessing library for algebraic-graphs-0.7...
1378.78 s
[algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7...
1379.20 s
[algebraic-graphs] [ 1 of 29] Compiling Algebra.Graph.AdjacencyMap ( src/Algebra/Graph/AdjacencyMap.hs, nothing )
1379.71 s
[algebraic-graphs] [ 2 of 29] Compiling Algebra.Graph.AdjacencyIntMap ( src/Algebra/Graph/AdjacencyIntMap.hs, nothing )
1379.85 s
[algebraic-graphs] [ 3 of 29] Compiling Algebra.Graph.AdjacencyIntMap.Algorithm ( src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs, nothing )
1380.08 s
[algebraic-graphs] [ 4 of 29] Compiling Algebra.Graph.Internal ( src/Algebra/Graph/Internal.hs, nothing )
1380.17 s
[algebraic-graphs] [ 5 of 29] Compiling Algebra.Graph ( src/Algebra/Graph.hs, nothing )
1380.53 s
[algebraic-graphs] [ 6 of 29] Compiling Algebra.Graph.HigherKinded.Class ( src/Algebra/Graph/HigherKinded/Class.hs, nothing )
1380.76 s
[algebraic-graphs] [ 7 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap ( src/Algebra/Graph/Bipartite/AdjacencyMap.hs, nothing )
1381.03 s
[algebraic-graphs] [ 8 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap.Algorithm ( src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs, nothing )
1381.76 s
[algebraic-graphs] [ 9 of 29] Compiling Algebra.Graph.Label ( src/Algebra/Graph/Label.hs, nothing )
1382.07 s
[algebraic-graphs] [10 of 29] Compiling Algebra.Graph.NonEmpty.AdjacencyMap ( src/Algebra/Graph/NonEmpty/AdjacencyMap.hs, nothing )
1382.25 s
[algebraic-graphs] [11 of 29] Compiling Algebra.Graph.AdjacencyMap.Algorithm ( src/Algebra/Graph/AdjacencyMap/Algorithm.hs, nothing )
1382.42 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:384:43: warning : [ GHC-63394 ] [ -Wx-partial ]
1382.42 s
[algebraic-graphs] In the use of ‘head’
1382.42 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
1382.42 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"."
1382.42 s
[algebraic-graphs] |
1382.42 s
[algebraic-graphs] 384 | exit v = do newComponent <- (v==).snd.head <$> gets boundaryStack
1382.42 s
[algebraic-graphs] | ^^^^
1382.42 s
[algebraic-graphs]
1382.42 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:391:21: warning : [ GHC-63394 ] [ -Wx-partial ]
1382.42 s
[algebraic-graphs] In the use of ‘tail’
1382.42 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
1382.42 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"."
1382.42 s
[algebraic-graphs] |
1382.42 s
[algebraic-graphs] 391 | pth' = tail v_pth' -- Here we know that v_pth' starts with v
1382.42 s
[algebraic-graphs] | ^^^^
1382.42 s
[algebraic-graphs]
1382.42 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:395:26: warning : [ GHC-63394 ] [ -Wx-partial ]
1382.42 s
[algebraic-graphs] In the use of ‘head’
1382.42 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
1382.42 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"."
1382.42 s
[algebraic-graphs] |
1382.43 s
[algebraic-graphs] 395 | p_v = fst $ head bnd
1382.43 s
[algebraic-graphs] | ^^^^
1382.43 s
[algebraic-graphs]
1382.43 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:397:21: warning : [ GHC-63394 ] [ -Wx-partial ]
1382.43 s
[algebraic-graphs] In the use of ‘tail’
1382.43 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
1382.43 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"."
1382.43 s
[algebraic-graphs] |
1382.43 s
[algebraic-graphs] 397 | bnd' = tail bnd
1382.43 s
[algebraic-graphs] | ^^^^
1382.43 s
[algebraic-graphs]
1382.43 s
[algebraic-graphs] [12 of 29] Compiling Algebra.Graph.Acyclic.AdjacencyMap ( src/Algebra/Graph/Acyclic/AdjacencyMap.hs, nothing )
1382.50 s
[algebraic-graphs] [13 of 29] Compiling Algebra.Graph.ToGraph ( src/Algebra/Graph/ToGraph.hs, nothing )
1382.63 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1382.63 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1382.63 s
[algebraic-graphs] will become an error in a future GHC release.
1382.63 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1382.63 s
[algebraic-graphs] |
1382.63 s
[algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
1382.63 s
[algebraic-graphs] | ^
1382.63 s
[algebraic-graphs]
1382.63 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1382.63 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1382.63 s
[algebraic-graphs] will become an error in a future GHC release.
1382.63 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1382.63 s
[algebraic-graphs] |
1382.63 s
[algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
1382.63 s
[algebraic-graphs] | ^
1382.63 s
[algebraic-graphs]
1382.63 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1382.63 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1382.63 s
[algebraic-graphs] will become an error in a future GHC release.
1382.63 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1382.63 s
[algebraic-graphs] |
1382.63 s
[algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
1382.63 s
[algebraic-graphs] | ^
1382.63 s
[algebraic-graphs]
1382.63 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1382.63 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1382.63 s
[algebraic-graphs] will become an error in a future GHC release.
1382.63 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1382.63 s
[algebraic-graphs] |
1382.63 s
[algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
1382.63 s
[algebraic-graphs] | ^
1382.63 s
[algebraic-graphs]
1382.63 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1382.63 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1382.63 s
[algebraic-graphs] will become an error in a future GHC release.
1382.63 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1382.63 s
[algebraic-graphs] |
1382.63 s
[algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
1382.63 s
[algebraic-graphs] | ^
1382.63 s
[algebraic-graphs]
1382.63 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1382.63 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1382.63 s
[algebraic-graphs] will become an error in a future GHC release.
1382.63 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1382.63 s
[algebraic-graphs] |
1382.63 s
[algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
1382.63 s
[algebraic-graphs] | ^
1382.63 s
[algebraic-graphs]
1382.63 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1382.63 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1382.63 s
[algebraic-graphs] will become an error in a future GHC release.
1382.63 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1382.63 s
[algebraic-graphs] |
1382.63 s
[algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
1382.64 s
[algebraic-graphs] | ^
1382.64 s
[algebraic-graphs]
1382.64 s
[algebraic-graphs] [14 of 29] Compiling Algebra.Graph.Relation ( src/Algebra/Graph/Relation.hs, nothing )
1382.86 s
[algebraic-graphs] [15 of 29] Compiling Algebra.Graph.Relation.Symmetric ( src/Algebra/Graph/Relation/Symmetric.hs, nothing )
1382.96 s
[algebraic-graphs] [16 of 29] Compiling Algebra.Graph.NonEmpty ( src/Algebra/Graph/NonEmpty.hs, nothing )
1383.16 s
[algebraic-graphs] [17 of 29] Compiling Algebra.Graph.Labelled.AdjacencyMap ( src/Algebra/Graph/Labelled/AdjacencyMap.hs, nothing )
1383.50 s
[algebraic-graphs] [18 of 29] Compiling Algebra.Graph.Labelled ( src/Algebra/Graph/Labelled.hs, nothing )
1383.72 s
[algebraic-graphs] [19 of 29] Compiling Algebra.Graph.Labelled.Example.Network ( src/Algebra/Graph/Labelled/Example/Network.hs, nothing )
1383.73 s
[algebraic-graphs] [20 of 29] Compiling Algebra.Graph.Labelled.Example.Automaton ( src/Algebra/Graph/Labelled/Example/Automaton.hs, nothing )
1383.77 s
[algebraic-graphs] [21 of 29] Compiling Algebra.Graph.Export ( src/Algebra/Graph/Export.hs, nothing )
1383.82 s
[algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1383.82 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1383.82 s
[algebraic-graphs] will become an error in a future GHC release.
1383.82 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1383.82 s
[algebraic-graphs] |
1383.82 s
[algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
1383.82 s
[algebraic-graphs] | ^
1383.82 s
[algebraic-graphs]
1383.82 s
[algebraic-graphs] [22 of 29] Compiling Algebra.Graph.Export.Dot ( src/Algebra/Graph/Export/Dot.hs, nothing )
1383.87 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1383.87 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1383.87 s
[algebraic-graphs] will become an error in a future GHC release.
1383.87 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1383.87 s
[algebraic-graphs] |
1383.87 s
[algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
1383.87 s
[algebraic-graphs] | ^
1383.87 s
[algebraic-graphs]
1383.87 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1383.87 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1383.87 s
[algebraic-graphs] will become an error in a future GHC release.
1383.87 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1383.87 s
[algebraic-graphs] |
1383.88 s
[algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
1383.88 s
[algebraic-graphs] | ^
1383.88 s
[algebraic-graphs]
1383.88 s
[algebraic-graphs] [23 of 29] Compiling Algebra.Graph.Undirected ( src/Algebra/Graph/Undirected.hs, nothing )
1384.00 s
[algebraic-graphs] [24 of 29] Compiling Algebra.Graph.Class ( src/Algebra/Graph/Class.hs, nothing )
1384.20 s
[algebraic-graphs] [25 of 29] Compiling Algebra.Graph.Relation.Transitive ( src/Algebra/Graph/Relation/Transitive.hs, nothing )
1384.22 s
[algebraic-graphs] [26 of 29] Compiling Algebra.Graph.Relation.Reflexive ( src/Algebra/Graph/Relation/Reflexive.hs, nothing )
1384.24 s
[algebraic-graphs] [27 of 29] Compiling Algebra.Graph.Relation.Preorder ( src/Algebra/Graph/Relation/Preorder.hs, nothing )
1384.26 s
[algebraic-graphs] [28 of 29] Compiling Algebra.Graph.Example.Todo ( src/Algebra/Graph/Example/Todo.hs, nothing )
1384.29 s
[algebraic-graphs] [29 of 29] Compiling Data.Graph.Typed ( src/Data/Graph/Typed.hs, nothing )
1384.32 s
[algebraic-graphs] Haddock coverage:
1384.33 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.33 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
1384.33 s
[algebraic-graphs] * in ‘Data.Map.Internal’
1384.33 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1384.33 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.33 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.33 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
1384.35 s
[algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
1384.36 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.36 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
1384.36 s
[algebraic-graphs] * in ‘Data.IntMap.Internal’
1384.36 s
[algebraic-graphs] * in ‘Data.IntSet.Internal’
1384.36 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.36 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.36 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
1384.37 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
1384.39 s
[algebraic-graphs] Warning: 'nub' is out of scope.
1384.39 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.39 s
[algebraic-graphs] Warning: 'sort' is out of scope.
1384.39 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.39 s
[algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
1384.39 s
[algebraic-graphs] Missing documentation for:
1384.39 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
1384.39 s
[algebraic-graphs] Warning: 'List' is ambiguous. It is defined
1384.39 s
[algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:18
1384.39 s
[algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:1
1384.39 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.39 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.39 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Internal.hs:50:1
1384.39 s
[algebraic-graphs] Warning: 'IsList' is out of scope.
1384.39 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.39 s
[algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
1384.39 s
[algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
1384.39 s
[algebraic-graphs] * at src/Algebra/Graph.hs:1400:18
1384.39 s
[algebraic-graphs] * at src/Algebra/Graph.hs:1400:1
1384.39 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.39 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.39 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:1400:1
1384.41 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.41 s
[algebraic-graphs] * at src/Algebra/Graph.hs:316:1
1384.41 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1384.41 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.41 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.41 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:316:1
1384.42 s
[algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
1384.43 s
[algebraic-graphs] Warning: 'mplus' is out of scope.
1384.43 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.43 s
[algebraic-graphs] Warning: 'vertexCount' is out of scope.
1384.43 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.43 s
[algebraic-graphs] Warning: 'hasVertex' is out of scope.
1384.43 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.43 s
[algebraic-graphs] Warning: 'vertexSet' is out of scope.
1384.43 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.43 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
1384.43 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.44 s
[algebraic-graphs] Warning: 'edgeList' is out of scope.
1384.44 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.44 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
1384.44 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.44 s
[algebraic-graphs] Warning: 'box' is out of scope.
1384.44 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.44 s
[algebraic-graphs] Warning: 'edgeCount' is out of scope.
1384.44 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.45 s
[algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
1384.45 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.45 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
1384.45 s
[algebraic-graphs] * in ‘Data.Map.Internal’
1384.45 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1384.45 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.45 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.45 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
1384.45 s
[algebraic-graphs] Warning: 'nub' is out of scope.
1384.45 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.46 s
[algebraic-graphs] Warning: 'swap' is ambiguous. It is defined
1384.46 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
1384.46 s
[algebraic-graphs] * in ‘GHC.Internal.Data.Tuple’
1384.46 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.46 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.47 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
1384.47 s
[algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
1384.48 s
[algebraic-graphs] Warning: 'isRight' is out of scope.
1384.48 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.48 s
[algebraic-graphs] Warning: 'Matching' is ambiguous. It is defined
1384.48 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:21
1384.48 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
1384.48 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.48 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.48 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
1384.48 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.48 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
1384.48 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1384.48 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.48 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.48 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
1384.49 s
[algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
1384.49 s
[algebraic-graphs] Warning: 'Optimum' is ambiguous. It is defined
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:20
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:1
1384.49 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.49 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.49 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:442:1
1384.49 s
[algebraic-graphs] Warning: 'Distance' is ambiguous. It is defined
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:22
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:1
1384.49 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.49 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.49 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:241:1
1384.49 s
[algebraic-graphs] Warning: 'Minimum' is ambiguous. It is defined
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:21
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:1
1384.49 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.49 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.49 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:314:1
1384.49 s
[algebraic-graphs] Warning: 'Capacity' is ambiguous. It is defined
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:22
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:1
1384.49 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.49 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.49 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:176:1
1384.49 s
[algebraic-graphs] Warning: 'Count' is ambiguous. It is defined
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:19
1384.49 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:1
1384.49 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.49 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.49 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:209:1
1384.49 s
[algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
1384.50 s
[algebraic-graphs] Warning: 'AdjacencyMap' is ambiguous. It is defined
1384.50 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:157:1
1384.50 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
1384.50 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.50 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.50 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
1384.50 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
1384.50 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.50 s
[algebraic-graphs] Warning: 'empty' is out of scope.
1384.50 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.50 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
1384.50 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.50 s
[algebraic-graphs] Warning: 'edges' is out of scope.
1384.50 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.50 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
1384.50 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.51 s
[algebraic-graphs] Warning: 'stars' is out of scope.
1384.51 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.51 s
[algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
1384.52 s
[algebraic-graphs] Warning: 'nub' is out of scope.
1384.52 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.52 s
[algebraic-graphs] Warning: 'sort' is out of scope.
1384.52 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.52 s
[algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
1384.52 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
1384.52 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
1384.52 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.52 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.53 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
1384.53 s
[algebraic-graphs] Warning: 'edge' is ambiguous. It is defined
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:252:1
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
1384.53 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.53 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.53 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
1384.53 s
[algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
1384.53 s
[algebraic-graphs] Missing documentation for:
1384.53 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
1384.53 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
1384.53 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.53 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.53 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
1384.53 s
[algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:143:1
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
1384.53 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.53 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.53 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:239:1
1384.53 s
[algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:246:1
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:417:1
1384.53 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.53 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.53 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:417:1
1384.53 s
[algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:258:1
1384.53 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:429:1
1384.53 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.53 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.53 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:429:1
1384.54 s
[algebraic-graphs] Warning: 'vertices' is ambiguous. It is defined
1384.54 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:157:1
1384.54 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:309:1
1384.54 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.55 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.55 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:309:1
1384.55 s
[algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
1384.55 s
[algebraic-graphs] Warning: 'foldg' is ambiguous. It is defined
1384.55 s
[algebraic-graphs] * at src/Algebra/Graph.hs:482:1
1384.55 s
[algebraic-graphs] * at src/Algebra/Graph/ToGraph.hs:98:5
1384.55 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.55 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.55 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/ToGraph.hs:98:5
1384.56 s
[algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
1384.56 s
[algebraic-graphs] Warning: 'Relation' is ambiguous. It is defined
1384.56 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:19
1384.56 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:1
1384.56 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.56 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.56 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:157:1
1384.57 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.57 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:243:1
1384.57 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1384.57 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.57 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.57 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:243:1
1384.57 s
[algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
1384.57 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.58 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
1384.58 s
[algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
1384.58 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:423:1
1384.58 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:372:1
1384.58 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.58 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.58 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:372:1
1384.58 s
[algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
1384.58 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:435:1
1384.58 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:384:1
1384.58 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.58 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.58 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:384:1
1384.59 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.59 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:188:1
1384.59 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1384.59 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.59 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.59 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:188:1
1384.60 s
[algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
1384.61 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
1384.61 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.62 s
[algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
1384.63 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.63 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
1384.63 s
[algebraic-graphs] * in ‘Data.Map.Internal’
1384.63 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.63 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.63 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
1384.63 s
[algebraic-graphs] Warning: 'hasEdge' is ambiguous. It is defined
1384.63 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:403:1
1384.63 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
1384.63 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.63 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.63 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
1384.64 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
1384.64 s
[algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
1384.64 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:20
1384.64 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:1
1384.64 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.64 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.64 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:675:1
1384.64 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.64 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:191:1
1384.64 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1384.64 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.64 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.64 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:191:1
1384.65 s
[algebraic-graphs] Warning: 'Focus' is ambiguous. It is defined
1384.65 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:18
1384.65 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:1
1384.65 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.65 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.65 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:642:1
1384.66 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
1384.66 s
[algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
1384.66 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
1384.66 s
[algebraic-graphs] Warning: 'Doc' is ambiguous. It is defined
1384.66 s
[algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:17
1384.66 s
[algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:1
1384.66 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.66 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.66 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export.hs:57:1
1384.67 s
[algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
1384.67 s
[algebraic-graphs] Warning: 'Style' is ambiguous. It is defined
1384.67 s
[algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:18
1384.67 s
[algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:1
1384.67 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.67 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.67 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export/Dot.hs:49:1
1384.67 s
[algebraic-graphs] Warning: 'Graph' is out of scope.
1384.67 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.67 s
[algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
1384.68 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1384.68 s
[algebraic-graphs] * at src/Algebra/Graph/Undirected.hs:253:1
1384.68 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1384.68 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.68 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.68 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Undirected.hs:253:1
1384.69 s
[algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
1384.70 s
[algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
1384.70 s
[algebraic-graphs] Warning: 'TransitiveRelation' is ambiguous. It is defined
1384.70 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:32
1384.70 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:1
1384.70 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.70 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.70 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Transitive.hs:39:1
1384.70 s
[algebraic-graphs] Warning: 'Transitive' is out of scope.
1384.70 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.70 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
1384.70 s
[algebraic-graphs] Warning: 'ReflexiveRelation' is ambiguous. It is defined
1384.70 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:31
1384.70 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:1
1384.70 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.70 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.70 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Reflexive.hs:34:1
1384.70 s
[algebraic-graphs] Warning: 'Reflexive' is out of scope.
1384.70 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.70 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
1384.70 s
[algebraic-graphs] Warning: 'PreorderRelation' is ambiguous. It is defined
1384.70 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:30
1384.70 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:1
1384.71 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.71 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.71 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Preorder.hs:44:1
1384.71 s
[algebraic-graphs] Warning: 'Preorder' is out of scope.
1384.71 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.71 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
1384.71 s
[algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
1384.71 s
[algebraic-graphs] Missing documentation for:
1384.71 s
[algebraic-graphs] Module header
1384.71 s
[algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
1384.71 s
[algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:42)
1384.71 s
[algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:23)
1384.71 s
[algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:27)
1384.71 s
[algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:35)
1384.71 s
[algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:39)
1384.71 s
[algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:31)
1384.71 s
[algebraic-graphs] Warning: 'GraphKL' is ambiguous. It is defined
1384.71 s
[algebraic-graphs] * at src/Data/Graph/Typed.hs:40:18
1384.71 s
[algebraic-graphs] * at src/Data/Graph/Typed.hs:40:1
1384.71 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1384.71 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1384.71 s
[algebraic-graphs] Defaulting to the one defined at src/Data/Graph/Typed.hs:40:1
1384.71 s
[algebraic-graphs] Warning: 'array' is out of scope.
1384.71 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1384.72 s
[algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
1384.72 s
[algebraic-graphs] Missing documentation for:
1384.72 s
[algebraic-graphs] scc (src/Data/Graph/Typed.hs:192)
1385.14 s
[algebraic-graphs] Warning: Algebra.Graph.AdjacencyMap: could not find link destinations for:
1385.14 s
[algebraic-graphs] - Algebra.Graph.AdjacencyMap.Rep_AdjacencyMap
1385.14 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap0
1385.14 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap0
1385.15 s
[algebraic-graphs] Warning: Algebra.Graph.AdjacencyIntMap: could not find link destinations for:
1385.15 s
[algebraic-graphs] - Algebra.Graph.AdjacencyIntMap.Rep_AdjacencyIntMap
1385.15 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyIntMap
1385.15 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyIntMap
1385.16 s
[algebraic-graphs] Warning: Algebra.Graph.Internal: could not find link destinations for:
1385.16 s
[algebraic-graphs] - Algebra.Graph.Internal.D:R:ItemList
1385.17 s
[algebraic-graphs] Warning: Algebra.Graph: could not find link destinations for:
1385.17 s
[algebraic-graphs] - Algebra.Graph.Rep_Graph
1385.17 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexGraph
1385.17 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph1
1385.18 s
[algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap: could not find link destinations for:
1385.18 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.D:R:ItemList
1385.18 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_List
1385.18 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_AdjacencyMap
1385.19 s
[algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap.Algorithm: could not find link destinations for:
1385.19 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Algorithm.Rep_Matching
1385.19 s
[algebraic-graphs] Warning: Algebra.Graph.Label: could not find link destinations for:
1385.19 s
[algebraic-graphs] - Algebra.Graph.Label.D:R:ItemMinimum
1385.19 s
[algebraic-graphs] - Algebra.Graph.Label.D:R:ItemLabel
1385.20 s
[algebraic-graphs] Warning: Algebra.Graph.NonEmpty.AdjacencyMap: could not find link destinations for:
1385.20 s
[algebraic-graphs] - Algebra.Graph.NonEmpty.AdjacencyMap.Rep_AdjacencyMap
1385.20 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap
1385.22 s
[algebraic-graphs] Warning: Algebra.Graph.ToGraph: could not find link destinations for:
1385.22 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap
1385.22 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyIntMap
1385.22 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap0
1385.22 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexGraph
1385.22 s
[algebraic-graphs] - Algebra.Graph.Relation.D:R:ToVertexRelation
1385.22 s
[algebraic-graphs] - Algebra.Graph.Relation.Symmetric.D:R:ToVertexRelation
1385.22 s
[algebraic-graphs] - Algebra.Graph.NonEmpty.D:R:ToVertexGraph
1385.22 s
[algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.D:R:ToVertexAdjacencyMap
1385.22 s
[algebraic-graphs] - Algebra.Graph.Labelled.D:R:ToVertexGraph
1385.22 s
[algebraic-graphs] Warning: Algebra.Graph.Relation: could not find link destinations for:
1385.22 s
[algebraic-graphs] - Algebra.Graph.Relation.D:R:ToVertexRelation
1385.22 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation0
1385.23 s
[algebraic-graphs] Warning: Algebra.Graph.Relation.Symmetric: could not find link destinations for:
1385.23 s
[algebraic-graphs] - Algebra.Graph.Relation.Symmetric.D:R:ToVertexRelation
1385.23 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation
1385.24 s
[algebraic-graphs] Warning: Algebra.Graph.NonEmpty: could not find link destinations for:
1385.24 s
[algebraic-graphs] - Algebra.Graph.NonEmpty.D:R:ToVertexGraph
1385.25 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled.AdjacencyMap: could not find link destinations for:
1385.25 s
[algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.D:R:ToVertexAdjacencyMap
1385.25 s
[algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.Rep_AdjacencyMap
1385.25 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap
1385.25 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled: could not find link destinations for:
1385.25 s
[algebraic-graphs] - Algebra.Graph.Labelled.D:R:ToVertexGraph
1385.26 s
[algebraic-graphs] - Algebra.Graph.Labelled.Rep_Graph
1385.26 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph
1385.27 s
[algebraic-graphs] Warning: Algebra.Graph.Undirected: could not find link destinations for:
1385.27 s
[algebraic-graphs] - Algebra.Graph.Undirected.Rep_Graph
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph0
1385.27 s
[algebraic-graphs] Warning: Algebra.Graph.Class: could not find link destinations for:
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexTuple3
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexTuple2
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexFUN
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexMaybe
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexUnit
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation0
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyIntMap
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap0
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph0
1385.27 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph1
1385.27 s
[algebraic-graphs] - Algebra.Graph.Relation.Transitive.D:R:VertexTransitiveRelation
1385.27 s
[algebraic-graphs] - Algebra.Graph.Relation.Reflexive.D:R:VertexReflexiveRelation
1385.27 s
[algebraic-graphs] - Algebra.Graph.Relation.Preorder.D:R:VertexPreorderRelation
1385.27 s
[algebraic-graphs] - Algebra.Graph.Example.Todo.D:R:VertexTodo
1385.27 s
[algebraic-graphs] Warning: Algebra.Graph.Relation.Transitive: could not find link destinations for:
1385.27 s
[algebraic-graphs] - Algebra.Graph.Relation.Transitive.D:R:VertexTransitiveRelation
1385.27 s
[algebraic-graphs] Warning: Algebra.Graph.Relation.Reflexive: could not find link destinations for:
1385.27 s
[algebraic-graphs] - Algebra.Graph.Relation.Reflexive.D:R:VertexReflexiveRelation
1385.27 s
[algebraic-graphs] Warning: Algebra.Graph.Relation.Preorder: could not find link destinations for:
1385.27 s
[algebraic-graphs] - Algebra.Graph.Relation.Preorder.D:R:VertexPreorderRelation
1385.27 s
[algebraic-graphs] Warning: Algebra.Graph.Example.Todo: could not find link destinations for:
1385.27 s
[algebraic-graphs] - Algebra.Graph.Example.Todo.D:R:VertexTodo
1393.71 s
[algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs/,
1393.72 s
[algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
1393.82 s
[algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7...
1393.82 s
[algebraic-graphs] Phase: installPhase
1393.95 s
[algebraic-graphs] Installing library in /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7/lib/ghc-9.10.1/lib/x86_64-linux-ghc-9.10.1-c9f5/algebraic-graphs-0.7-AAPM0aMUT3IJEc898B7g5W
1395.74 s
[algebraic-graphs] Phase: fixupPhase
1395.85 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7
1395.89 s
[algebraic-graphs] shrinking /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7/lib/ghc-9.10.1/lib/x86_64-linux-ghc-9.10.1-c9f5/libHSalgebraic-graphs-0.7-AAPM0aMUT3IJEc898B7g5W-ghc9.10.1.so
1395.93 s
[algebraic-graphs] checking for references to /build/ in /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7...
1395.99 s
[algebraic-graphs] patching script interpreter paths in /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7
1396.00 s
[algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7/lib
1396.78 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/lq5jvc9ayfhbqzrmvndwj05z2hm1x6cj-algebraic-graphs-0.7-doc
1396.82 s
[algebraic-graphs] checking for references to /build/ in /nix/store/lq5jvc9ayfhbqzrmvndwj05z2hm1x6cj-algebraic-graphs-0.7-doc...
1396.86 s
[algebraic-graphs] patching script interpreter paths in /nix/store/lq5jvc9ayfhbqzrmvndwj05z2hm1x6cj-algebraic-graphs-0.7-doc
1397.34 s
[algebraic-graphs:post-build] Uploading to cachix cache "sellout": /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7 /nix/store/lq5jvc9ayfhbqzrmvndwj05z2hm1x6cj-algebraic-graphs-0.7-doc
1398.85 s
[algebraic-graphs:post-build] Nothing to push - all store paths are already on Cachix.
1399.10 s
[algebraic-graphs:post-build] Uploading to the NixCI cache: /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7 /nix/store/lq5jvc9ayfhbqzrmvndwj05z2hm1x6cj-algebraic-graphs-0.7-doc
1399.76 s
[algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1399.97 s
[algebraic-graphs:post-build] copying 1 paths...
1399.97 s
[algebraic-graphs:post-build] copying path '/nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
1411.82 s
[algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1411.98 s
[algebraic-graphs:post-build] copying 0 paths...
1412.26 s
Progress: 10 of 15 built, 155 of 155 downloaded from cache
1412.53 s
Building /nix/store/03d4ikca28a9qrfbq5l8kgvggwjqfvwq-algebraic-graph-duoids-0.0.1.0.drv
1412.71 s
[algebraic-graph-duoids] Phase: setupCompilerEnvironmentPhase
1412.72 s
[algebraic-graph-duoids] Build with /nix/store/fzz7jxvkkn907krypgd70azfqcgw7jp5-ghc-9.10.1.
1413.26 s
[algebraic-graph-duoids] Phase: unpackPhase
1413.28 s
[algebraic-graph-duoids] unpacking source archive /nix/store/2pi6cc3ispq29svgnm6ji6gvgnwcqkka-kaqf6a6zn2kfz70w33vsn1jsv1z5h2sp-source/./algebraic-graphs
1413.30 s
[algebraic-graph-duoids] source root is algebraic-graphs
1413.34 s
[algebraic-graph-duoids] Phase: patchPhase
1413.36 s
[algebraic-graph-duoids] Phase: compileBuildDriverPhase
1413.37 s
[algebraic-graph-duoids] setupCompileFlags: -package-db=/build/tmp.rsKxKT1OXW/setup-package.conf.d -threaded
1413.50 s
[algebraic-graph-duoids] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.rsKxKT1OXW/Main.o )
1413.61 s
[algebraic-graph-duoids] [2 of 2] Linking Setup
1415.54 s
[algebraic-graph-duoids] Phase: updateAutotoolsGnuConfigScriptsPhase
1415.55 s
[algebraic-graph-duoids] Phase: configurePhase
1415.56 s
[algebraic-graph-duoids] configureFlags: --verbose --prefix=/nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0 --with-gcc=gcc --package-db=/build/tmp.rsKxKT1OXW/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/vj3rmg6937p9icir6bazbdcb4xdnrg9j-ncurses-6.5/lib --extra-lib-dirs=/nix/store/0aaj6jbxclpwvrphggqz4vf5hg8360fr-libffi-3.4.8/lib --extra-lib-dirs=/nix/store/mlnlvdaij0c6qgzz3mmcb5f796871778-elfutils-0.192/lib --extra-lib-dirs=/nix/store/m9fycbkaairz8kampnsl7sx1aanvl0db-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fzz7jxvkkn907krypgd70azfqcgw7jp5-ghc-9.10.1/lib
1415.57 s
[algebraic-graph-duoids] Using Parsec parser
1415.57 s
[algebraic-graph-duoids] Configuring algebraic-graph-duoids-0.0.1.0...
1416.18 s
[algebraic-graph-duoids] Flags chosen: noisy-deprecations=True, verify-no-recursion=False
1416.72 s
[algebraic-graph-duoids] Dependency algebraic-graphs >=0.6.1 && <0.8: using algebraic-graphs-0.7
1416.72 s
[algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
1416.72 s
[algebraic-graph-duoids] >=4.21.0 && <4.22: using base-4.20.0.0
1416.72 s
[algebraic-graph-duoids] Dependency duoids >=0.0.1 && <0.1: using duoids-0.0.1.0
1416.72 s
[algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
1416.72 s
[algebraic-graph-duoids] Dependency algebraic-graphs >=0.6.1 && <0.8: using algebraic-graphs-0.7
1416.72 s
[algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
1416.72 s
[algebraic-graph-duoids] >=4.21.0 && <4.22: using base-4.20.0.0
1416.72 s
[algebraic-graph-duoids] Dependency duoids-hedgehog >=0.0.1 && <0.1: using duoids-hedgehog-0.0.1.0
1416.72 s
[algebraic-graph-duoids] Dependency hedgehog >=1.2 && <1.3 || >=1.4 && <1.6 || >=1.7 && <1.8: using
1416.72 s
[algebraic-graph-duoids] hedgehog-1.5
1416.72 s
[algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
1416.72 s
[algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
1416.72 s
[algebraic-graph-duoids] >=4.21.0 && <4.22: using base-4.20.0.0
1416.72 s
[algebraic-graph-duoids] Dependency doctest >=0.21.1 && <0.22 || >=0.22.6 && <0.23 || >=0.24.0 &&
1416.72 s
[algebraic-graph-duoids] <0.25: using doctest-0.22.6
1416.72 s
[algebraic-graph-duoids] Source component graph:
1416.72 s
[algebraic-graph-duoids] component lib
1416.72 s
[algebraic-graph-duoids] component test:doctests dependency lib
1416.72 s
[algebraic-graph-duoids] component test:laws dependency lib
1416.72 s
[algebraic-graph-duoids] Configured component graph:
1416.72 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.72 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-AAPM0aMUT3IJEc898B7g5W
1416.72 s
[algebraic-graph-duoids] include base-4.20.0.0-d8e2
1416.72 s
[algebraic-graph-duoids] include duoids-0.0.1.0-8obtTNiNrGCDKola4aJJJN
1416.72 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-31LLjrEzvj7DhdKmrzOYux-doctests
1416.72 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.72 s
[algebraic-graph-duoids] include base-4.20.0.0-d8e2
1416.72 s
[algebraic-graph-duoids] include doctest-0.22.6-HR3UVJoTDZTENaQZ1quT8w
1416.72 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-5nr45lqmaoGKKZhtXykudW-laws
1416.72 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.72 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-AAPM0aMUT3IJEc898B7g5W
1416.72 s
[algebraic-graph-duoids] include base-4.20.0.0-d8e2
1416.72 s
[algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-7B9QziXFJ9xIJaSL1hRQCc
1416.72 s
[algebraic-graph-duoids] include hedgehog-1.5-G7VpTWf9AsCJwoohauE3aa
1416.72 s
[algebraic-graph-duoids] Linked component graph:
1416.72 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.72 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-AAPM0aMUT3IJEc898B7g5W
1416.72 s
[algebraic-graph-duoids] include base-4.20.0.0-d8e2
1416.72 s
[algebraic-graph-duoids] include duoids-0.0.1.0-8obtTNiNrGCDKola4aJJJN
1416.72 s
[algebraic-graph-duoids] Algebra.Graph.Duoid=algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI:Algebra.Graph.Duoid,Algebra.Graph.Duoid.Orphans=algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI:Algebra.Graph.Duoid.Orphans
1416.72 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-31LLjrEzvj7DhdKmrzOYux-doctests
1416.72 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.72 s
[algebraic-graph-duoids] include base-4.20.0.0-d8e2
1416.72 s
[algebraic-graph-duoids] include doctest-0.22.6-HR3UVJoTDZTENaQZ1quT8w
1416.72 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-5nr45lqmaoGKKZhtXykudW-laws
1416.72 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.72 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-AAPM0aMUT3IJEc898B7g5W
1416.72 s
[algebraic-graph-duoids] include base-4.20.0.0-d8e2
1416.72 s
[algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-7B9QziXFJ9xIJaSL1hRQCc
1416.72 s
[algebraic-graph-duoids] include hedgehog-1.5-G7VpTWf9AsCJwoohauE3aa
1416.72 s
[algebraic-graph-duoids] Ready component graph:
1416.72 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.72 s
[algebraic-graph-duoids] depends algebraic-graphs-0.7-AAPM0aMUT3IJEc898B7g5W
1416.72 s
[algebraic-graph-duoids] depends base-4.20.0.0-d8e2
1416.72 s
[algebraic-graph-duoids] depends duoids-0.0.1.0-8obtTNiNrGCDKola4aJJJN
1416.72 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-5nr45lqmaoGKKZhtXykudW-laws
1416.72 s
[algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.72 s
[algebraic-graph-duoids] depends algebraic-graphs-0.7-AAPM0aMUT3IJEc898B7g5W
1416.72 s
[algebraic-graph-duoids] depends base-4.20.0.0-d8e2
1416.72 s
[algebraic-graph-duoids] depends duoids-hedgehog-0.0.1.0-7B9QziXFJ9xIJaSL1hRQCc
1416.72 s
[algebraic-graph-duoids] depends hedgehog-1.5-G7VpTWf9AsCJwoohauE3aa
1416.72 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-31LLjrEzvj7DhdKmrzOYux-doctests
1416.73 s
[algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.73 s
[algebraic-graph-duoids] depends base-4.20.0.0-d8e2
1416.73 s
[algebraic-graph-duoids] depends doctest-0.22.6-HR3UVJoTDZTENaQZ1quT8w
1416.73 s
[algebraic-graph-duoids] Using Cabal-3.12.1.0 compiled by ghc-9.10
1416.73 s
[algebraic-graph-duoids] Using compiler: ghc-9.10.1
1416.73 s
[algebraic-graph-duoids] Using install prefix:
1416.73 s
[algebraic-graph-duoids] /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0
1416.73 s
[algebraic-graph-duoids] Executables installed in:
1416.73 s
[algebraic-graph-duoids] /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/bin
1416.73 s
[algebraic-graph-duoids] Libraries installed in:
1416.73 s
[algebraic-graph-duoids] /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.10.1/lib/x86_64-linux-ghc-9.10.1-c9f5/algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1416.73 s
[algebraic-graph-duoids] Dynamic Libraries installed in:
1416.73 s
[algebraic-graph-duoids] /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.10.1/lib/x86_64-linux-ghc-9.10.1-c9f5
1416.73 s
[algebraic-graph-duoids] Private executables installed in:
1416.73 s
[algebraic-graph-duoids] /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/libexec/x86_64-linux-ghc-9.10.1-c9f5/algebraic-graph-duoids-0.0.1.0
1416.73 s
[algebraic-graph-duoids] Data files installed in:
1416.73 s
[algebraic-graph-duoids] /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/share/x86_64-linux-ghc-9.10.1-c9f5/algebraic-graph-duoids-0.0.1.0
1416.73 s
[algebraic-graph-duoids] Documentation installed in:
1416.73 s
[algebraic-graph-duoids] /nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0
1416.73 s
[algebraic-graph-duoids] Configuration files installed in:
1416.73 s
[algebraic-graph-duoids] /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/etc
1416.73 s
[algebraic-graph-duoids] No alex found
1416.73 s
[algebraic-graph-duoids] Using ar found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
1416.73 s
[algebraic-graph-duoids] No c2hs found
1416.73 s
[algebraic-graph-duoids] No cpphs found
1416.73 s
[algebraic-graph-duoids] Using doctest version 0.22.6 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/2cb590hnnq4abkx6yb17l1iych2yf7bc-doctest-0.22.6/bin/doctest
1416.73 s
[algebraic-graph-duoids] Using gcc version 14.3.0 given by user at:
1416.73 s
[algebraic-graph-duoids] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
1416.73 s
[algebraic-graph-duoids] Using ghc version 9.10.1 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/fzz7jxvkkn907krypgd70azfqcgw7jp5-ghc-9.10.1/bin/ghc
1416.73 s
[algebraic-graph-duoids] Using ghc-pkg version 9.10.1 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/fzz7jxvkkn907krypgd70azfqcgw7jp5-ghc-9.10.1/bin/ghc-pkg-9.10.1
1416.73 s
[algebraic-graph-duoids] No ghcjs found
1416.73 s
[algebraic-graph-duoids] No ghcjs-pkg found
1416.73 s
[algebraic-graph-duoids] No greencard found
1416.73 s
[algebraic-graph-duoids] Using haddock version 2.28.0 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/fzz7jxvkkn907krypgd70azfqcgw7jp5-ghc-9.10.1/bin/haddock-ghc-9.10.1
1416.73 s
[algebraic-graph-duoids] No happy found
1416.73 s
[algebraic-graph-duoids] Using haskell-suite found on system at: haskell-suite-dummy-location
1416.73 s
[algebraic-graph-duoids] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
1416.73 s
[algebraic-graph-duoids] No hmake found
1416.73 s
[algebraic-graph-duoids] Using hpc version 0.69 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/fzz7jxvkkn907krypgd70azfqcgw7jp5-ghc-9.10.1/bin/hpc-ghc-9.10.1
1416.73 s
[algebraic-graph-duoids] Using hsc2hs version 0.68.10 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/fzz7jxvkkn907krypgd70azfqcgw7jp5-ghc-9.10.1/bin/hsc2hs-ghc-9.10.1
1416.73 s
[algebraic-graph-duoids] Using hscolour version 1.25 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/c0gbcvjjvqzy92m9ycv6zcqiczs6bvyw-hscolour-1.25/bin/HsColour
1416.73 s
[algebraic-graph-duoids] No jhc found
1416.73 s
[algebraic-graph-duoids] Using ld found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/ld
1416.73 s
[algebraic-graph-duoids] No pkg-config found
1416.73 s
[algebraic-graph-duoids] Using runghc version 9.10.1 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/fzz7jxvkkn907krypgd70azfqcgw7jp5-ghc-9.10.1/bin/runghc-9.10.1
1416.73 s
[algebraic-graph-duoids] Using strip version 2.44 found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
1416.73 s
[algebraic-graph-duoids] Using tar found on system at:
1416.73 s
[algebraic-graph-duoids] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
1416.73 s
[algebraic-graph-duoids] No uhc found
1417.05 s
[algebraic-graph-duoids] Phase: buildPhase
1417.41 s
[algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
1417.46 s
[algebraic-graph-duoids] Building library for algebraic-graph-duoids-0.0.1.0...
1417.56 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 )
1417.66 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 )
1419.12 s
[algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, dist/build/Algebra/Graph/Duoid.p_o )
1419.48 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 )
1422.64 s
[algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
1422.64 s
[algebraic-graph-duoids] Building test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
1422.78 s
[algebraic-graph-duoids] [1 of 1] Compiling Main ( tests/laws.hs, dist/build/laws/laws-tmp/Main.o )
1423.48 s
[algebraic-graph-duoids] [2 of 2] Linking dist/build/laws/laws
1424.78 s
[algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
1424.78 s
[algebraic-graph-duoids] Building test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
1425.01 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 )
1426.01 s
[algebraic-graph-duoids] [2 of 2] Compiling Main ( tests/doctests.hs, dist/build/doctests/doctests-tmp/Main.o )
1426.54 s
[algebraic-graph-duoids] [3 of 3] Linking dist/build/doctests/doctests
1433.30 s
[algebraic-graph-duoids] Phase: checkPhase
1433.88 s
[algebraic-graph-duoids] Running 2 test suites...
1433.88 s
[algebraic-graph-duoids] Test suite laws: RUNNING...
1433.90 s
[algebraic-graph-duoids] ━━━ Duoid.Normal (Graph Word8) ━━━
1433.91 s
[algebraic-graph-duoids] ✓ unswapUnit passed 100 tests.
1433.92 s
[algebraic-graph-duoids] ✓ interchange passed 100 tests.
1433.92 s
[algebraic-graph-duoids] ✓ splitUnit passed 100 tests.
1433.92 s
[algebraic-graph-duoids] ✓ joinUnit passed 100 tests.
1433.92 s
[algebraic-graph-duoids] ✓ swapUnit passed 100 tests.
1433.92 s
[algebraic-graph-duoids] ✓ 5 succeeded.
1433.92 s
[algebraic-graph-duoids] Test suite laws: PASS
1433.93 s
[algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-laws.log
1433.93 s
[algebraic-graph-duoids] Test suite doctests: RUNNING...
1435.08 s
[algebraic-graph-duoids] Examples: 0 Tried: 0 Errors: 0 Failures: 0
1435.17 s
[algebraic-graph-duoids] Test suite doctests: PASS
1435.17 s
[algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-doctests.log
1435.17 s
[algebraic-graph-duoids] 2 of 2 test suites (2 of 2 test cases) passed.
1435.20 s
[algebraic-graph-duoids] Phase: haddockPhase
1435.71 s
[algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
1435.71 s
[algebraic-graph-duoids] Running Haddock on library for algebraic-graph-duoids-0.0.1.0...
1436.60 s
[algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, nothing )
1436.64 s
[algebraic-graph-duoids] [2 of 2] Compiling Algebra.Graph.Duoid.Orphans ( src/Algebra/Graph/Duoid/Orphans.hs, nothing )
1436.88 s
[algebraic-graph-duoids] Haddock coverage:
1436.88 s
[algebraic-graph-duoids] 20% ( 1 / 5) in 'Algebra.Graph.Duoid'
1436.88 s
[algebraic-graph-duoids] Missing documentation for:
1436.88 s
[algebraic-graph-duoids] parEmptyGraph (src/Algebra/Graph/Duoid.hs:24)
1436.88 s
[algebraic-graph-duoids] seqEmptyGraph (src/Algebra/Graph/Duoid.hs:27)
1436.88 s
[algebraic-graph-duoids] parGraph (src/Algebra/Graph/Duoid.hs:30)
1436.88 s
[algebraic-graph-duoids] seqGraph (src/Algebra/Graph/Duoid.hs:33)
1436.88 s
[algebraic-graph-duoids] 100% ( 1 / 1) in 'Algebra.Graph.Duoid.Orphans'
1443.94 s
[algebraic-graph-duoids] Documentation created: dist/doc/html/algebraic-graph-duoids/,
1443.94 s
[algebraic-graph-duoids] dist/doc/html/algebraic-graph-duoids/algebraic-graph-duoids.txt
1444.04 s
[algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
1444.04 s
[algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
1444.06 s
[algebraic-graph-duoids] Phase: installPhase
1444.27 s
[algebraic-graph-duoids] Installing library in /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.10.1/lib/x86_64-linux-ghc-9.10.1-c9f5/algebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI
1444.84 s
[algebraic-graph-duoids] Phase: fixupPhase
1444.95 s
[algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0
1444.96 s
[algebraic-graph-duoids] shrinking /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.10.1/lib/x86_64-linux-ghc-9.10.1-c9f5/libHSalgebraic-graph-duoids-0.0.1.0-GmwqmcJAkZo7nm4QEs3TNI-ghc9.10.1.so
1444.97 s
[algebraic-graph-duoids] checking for references to /build/ in /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0...
1445.02 s
[algebraic-graph-duoids] patching script interpreter paths in /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0
1445.03 s
[algebraic-graph-duoids] stripping (with command strip and flags -S -p) in /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/lib
1445.29 s
[algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc
1445.31 s
[algebraic-graph-duoids] checking for references to /build/ in /nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc...
1445.33 s
[algebraic-graph-duoids] patching script interpreter paths in /nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc
1446.21 s
[algebraic-graph-duoids:post-build] Uploading to cachix cache "sellout": /nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0
1447.56 s
[algebraic-graph-duoids:post-build] Pushing 3 paths (69 are already present) using zstd to cache sellout ⏳
1447.56 s
[algebraic-graph-duoids:post-build]
1447.98 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc (528.05 KiB)
1448.26 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/5i17rngglby671bra0ns7nr01v1c0340-binutils-2.44-lib (2.86 MiB)
1448.26 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0 (1.19 MiB)
1449.40 s
[algebraic-graph-duoids:post-build]
1449.40 s
[algebraic-graph-duoids:post-build] All done.
1449.66 s
[algebraic-graph-duoids:post-build] Uploading to the NixCI cache: /nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0
1450.29 s
[algebraic-graph-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1450.55 s
[algebraic-graph-duoids:post-build] copying 2 paths...
1450.55 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/177gj3jxawda4sfnmicgxd2rng17nlrw-algebraic-graph-duoids-0.0.1.0-doc' to 'https://cache.nix-ci.com'...
1450.93 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0' to 'https://cache.nix-ci.com'...
1452.31 s
[algebraic-graph-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1452.94 s
[algebraic-graph-duoids:post-build] copying 1 paths...
1452.94 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/03d4ikca28a9qrfbq5l8kgvggwjqfvwq-algebraic-graph-duoids-0.0.1.0.drv' to 'https://cache.nix-ci.com'...
1453.26 s
Progress: 11 of 15 built, 155 of 155 downloaded from cache
1453.36 s
Building /nix/store/b4v4wq219rkjibwwqvn37vpv6m4hv8i8-ghc-9.10.1-with-packages.drv
1453.46 s
[ghc-9.10.1-with-packages] /nix/store/nfq4ln7wnj4msd03hn9nxyvz2ly0m73z-duoidal-transformers-0.0.1.0/nix-support:
1453.46 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.47 s
[ghc-9.10.1-with-packages] /nix/store/kr5zb9ii4kdiqv515f8h76l2rx6h57c2-duoids-hedgehog-0.0.1.0/nix-support:
1453.47 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.48 s
[ghc-9.10.1-with-packages] /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7/nix-support:
1453.48 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.48 s
[ghc-9.10.1-with-packages] /nix/store/ik07gfib6m68f28jzk4p8yvyjnw7xmby-algebraic-graphs-0.7/nix-support:
1453.48 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.49 s
[ghc-9.10.1-with-packages] /nix/store/7qidk99w72crc8z5j6f4p74kx276sgj0-hedgehog-1.5/nix-support:
1453.49 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.51 s
[ghc-9.10.1-with-packages] /nix/store/7qidk99w72crc8z5j6f4p74kx276sgj0-hedgehog-1.5/nix-support:
1453.51 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.52 s
[ghc-9.10.1-with-packages] /nix/store/h0ykgdjcqlfvh1wn79x85wqw3gh546p4-ansi-terminal-1.1.2/nix-support:
1453.52 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.52 s
[ghc-9.10.1-with-packages] /nix/store/h0ykgdjcqlfvh1wn79x85wqw3gh546p4-ansi-terminal-1.1.2/nix-support:
1453.52 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.53 s
[ghc-9.10.1-with-packages] /nix/store/zcz3kjbalgr50jdw7nn03w7z682fjv6v-async-2.2.5/nix-support:
1453.53 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.53 s
[ghc-9.10.1-with-packages] /nix/store/zcz3kjbalgr50jdw7nn03w7z682fjv6v-async-2.2.5/nix-support:
1453.53 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.55 s
[ghc-9.10.1-with-packages] /nix/store/39jf1iva2mwr4391hxi1rmypmbrnc2ck-barbies-2.1.1.0/nix-support:
1453.55 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.55 s
[ghc-9.10.1-with-packages] /nix/store/39jf1iva2mwr4391hxi1rmypmbrnc2ck-barbies-2.1.1.0/nix-support:
1453.55 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.56 s
[ghc-9.10.1-with-packages] /nix/store/whq28rq9al7rp7ji21g097fimkqjfns3-concurrent-output-1.10.21/nix-support:
1453.56 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.56 s
[ghc-9.10.1-with-packages] /nix/store/whq28rq9al7rp7ji21g097fimkqjfns3-concurrent-output-1.10.21/nix-support:
1453.56 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.58 s
[ghc-9.10.1-with-packages] /nix/store/k73g4xas4had12s3kifnzaw849jksis3-lifted-async-0.10.2.7/nix-support:
1453.58 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.59 s
[ghc-9.10.1-with-packages] /nix/store/k73g4xas4had12s3kifnzaw849jksis3-lifted-async-0.10.2.7/nix-support:
1453.59 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.60 s
[ghc-9.10.1-with-packages] /nix/store/4ns9fyrq612h4i71qln0vz63mjc0klf1-mmorph-1.2.0/nix-support:
1453.60 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.60 s
[ghc-9.10.1-with-packages] /nix/store/4ns9fyrq612h4i71qln0vz63mjc0klf1-mmorph-1.2.0/nix-support:
1453.60 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.61 s
[ghc-9.10.1-with-packages] /nix/store/55q9qjdy9a2f3v9qkbgyfymzl8jv1j45-monad-control-1.0.3.1/nix-support:
1453.61 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.61 s
[ghc-9.10.1-with-packages] /nix/store/55q9qjdy9a2f3v9qkbgyfymzl8jv1j45-monad-control-1.0.3.1/nix-support:
1453.61 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.62 s
[ghc-9.10.1-with-packages] /nix/store/80jgrv3fi6lv8lvkxqsy7dngqibrl2pl-pretty-show-1.10/nix-support:
1453.62 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.62 s
[ghc-9.10.1-with-packages] /nix/store/80jgrv3fi6lv8lvkxqsy7dngqibrl2pl-pretty-show-1.10/nix-support:
1453.62 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.63 s
[ghc-9.10.1-with-packages] /nix/store/7jwqnaq1b8xd99g0hbfm8da6sp4nwhk6-primitive-0.9.1.0/nix-support:
1453.63 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.63 s
[ghc-9.10.1-with-packages] /nix/store/7jwqnaq1b8xd99g0hbfm8da6sp4nwhk6-primitive-0.9.1.0/nix-support:
1453.63 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.64 s
[ghc-9.10.1-with-packages] /nix/store/qs8m72qc11px76cafzs1g4xfdgfj1r0v-random-1.2.1.3/nix-support:
1453.64 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.64 s
[ghc-9.10.1-with-packages] /nix/store/qs8m72qc11px76cafzs1g4xfdgfj1r0v-random-1.2.1.3/nix-support:
1453.64 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.64 s
[ghc-9.10.1-with-packages] /nix/store/dgwpa65i0rag3shwqjrjj2y7fz590pzb-resourcet-1.3.0/nix-support:
1453.64 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.68 s
[ghc-9.10.1-with-packages] /nix/store/dgwpa65i0rag3shwqjrjj2y7fz590pzb-resourcet-1.3.0/nix-support:
1453.68 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.69 s
[ghc-9.10.1-with-packages] /nix/store/w48i3nmvkggzayjdrkk3hy55hix89004-safe-exceptions-0.1.7.4/nix-support:
1453.69 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.69 s
[ghc-9.10.1-with-packages] /nix/store/w48i3nmvkggzayjdrkk3hy55hix89004-safe-exceptions-0.1.7.4/nix-support:
1453.69 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.70 s
[ghc-9.10.1-with-packages] /nix/store/5ka7l66dgxc9vakyhfcid13fxcsamd01-transformers-base-0.4.6/nix-support:
1453.70 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.71 s
[ghc-9.10.1-with-packages] /nix/store/5ka7l66dgxc9vakyhfcid13fxcsamd01-transformers-base-0.4.6/nix-support:
1453.71 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.72 s
[ghc-9.10.1-with-packages] /nix/store/xrw6nxh1w6yggz98838qgbmd7x6rk22y-wl-pprint-annotated-0.1.0.1/nix-support:
1453.72 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.73 s
[ghc-9.10.1-with-packages] /nix/store/xrw6nxh1w6yggz98838qgbmd7x6rk22y-wl-pprint-annotated-0.1.0.1/nix-support:
1453.73 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.73 s
[ghc-9.10.1-with-packages] /nix/store/c38lskzzvwl25g7f7im6hr8jxh4xpi7p-ansi-terminal-types-1.1/nix-support:
1453.73 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.74 s
[ghc-9.10.1-with-packages] /nix/store/c38lskzzvwl25g7f7im6hr8jxh4xpi7p-ansi-terminal-types-1.1/nix-support:
1453.74 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.77 s
[ghc-9.10.1-with-packages] /nix/store/q91r3c043pfcxw543gkm6f86w6pqy94h-hashable-1.4.7.0/nix-support:
1453.77 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.77 s
[ghc-9.10.1-with-packages] /nix/store/q91r3c043pfcxw543gkm6f86w6pqy94h-hashable-1.4.7.0/nix-support:
1453.77 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.78 s
[ghc-9.10.1-with-packages] /nix/store/65wpgp9y9m9gqfkazsz7vwlz5dhxyllw-distributive-0.6.2.1/nix-support:
1453.78 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.79 s
[ghc-9.10.1-with-packages] /nix/store/65wpgp9y9m9gqfkazsz7vwlz5dhxyllw-distributive-0.6.2.1/nix-support:
1453.79 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.82 s
[ghc-9.10.1-with-packages] /nix/store/fgg7r9vhfkp2lihymslz124569dcg8z1-constraints-0.14.2/nix-support:
1453.82 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.82 s
[ghc-9.10.1-with-packages] /nix/store/fgg7r9vhfkp2lihymslz124569dcg8z1-constraints-0.14.2/nix-support:
1453.82 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.83 s
[ghc-9.10.1-with-packages] /nix/store/mdk4bzh727v2lq9qm3bkkxlx4blnhz8f-lifted-base-0.2.3.12/nix-support:
1453.83 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.84 s
[ghc-9.10.1-with-packages] /nix/store/mdk4bzh727v2lq9qm3bkkxlx4blnhz8f-lifted-base-0.2.3.12/nix-support:
1453.84 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.84 s
[ghc-9.10.1-with-packages] /nix/store/27xwrfajp40al1v0q9l4l1ndjidcwpx2-transformers-compat-0.7.2/nix-support:
1453.84 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.85 s
[ghc-9.10.1-with-packages] /nix/store/27xwrfajp40al1v0q9l4l1ndjidcwpx2-transformers-compat-0.7.2/nix-support:
1453.85 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.87 s
[ghc-9.10.1-with-packages] /nix/store/43hwd63lscl1vm4dac76w50qkcdlh2m7-splitmix-0.1.1/nix-support:
1453.87 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.88 s
[ghc-9.10.1-with-packages] /nix/store/43hwd63lscl1vm4dac76w50qkcdlh2m7-splitmix-0.1.1/nix-support:
1453.88 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.89 s
[ghc-9.10.1-with-packages] /nix/store/52bg4hrpp4mkndr47h3adgps9y5zczms-unliftio-core-0.2.1.0/nix-support:
1453.89 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.90 s
[ghc-9.10.1-with-packages] /nix/store/52bg4hrpp4mkndr47h3adgps9y5zczms-unliftio-core-0.2.1.0/nix-support:
1453.90 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.91 s
[ghc-9.10.1-with-packages] /nix/store/5nqxakmpk4shlyjpqp2362mydjy3zhhs-base-orphans-0.9.3/nix-support:
1453.91 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.92 s
[ghc-9.10.1-with-packages] /nix/store/5nqxakmpk4shlyjpqp2362mydjy3zhhs-base-orphans-0.9.3/nix-support:
1453.92 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.92 s
[ghc-9.10.1-with-packages] /nix/store/faklbxjjd9rdmc9v63fvmpwizw5dnn27-tagged-0.8.8/nix-support:
1453.92 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.93 s
[ghc-9.10.1-with-packages] /nix/store/faklbxjjd9rdmc9v63fvmpwizw5dnn27-tagged-0.8.8/nix-support:
1453.93 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.94 s
[ghc-9.10.1-with-packages] /nix/store/cws8f3ga2b07l92xi46frcclk9vqk1na-boring-0.2.2/nix-support:
1453.94 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1453.94 s
[ghc-9.10.1-with-packages] /nix/store/cws8f3ga2b07l92xi46frcclk9vqk1na-boring-0.2.2/nix-support:
1453.94 s
[ghc-9.10.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/7y15lpail0g6kx61wi23776xpl855437-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1454.85 s
[ghc-9.10.1-with-packages] Warning: include-dirs: /nix/store/jc9bac0w3csvmws2q7gr2z13y8n7q0wl-ghc-9.10.1-with-packages/lib/ghc-9.10.1/lib/../lib/x86_64-linux-ghc-9.10.1/directory-1.3.8.3-678a/include doesn't exist or isn't a directory
1456.20 s
[ghc-9.10.1-with-packages:post-build] Uploading to cachix cache "sellout": /nix/store/jc9bac0w3csvmws2q7gr2z13y8n7q0wl-ghc-9.10.1-with-packages
1457.45 s
[ghc-9.10.1-with-packages:post-build] Pushing 1 paths (138 are already present) using zstd to cache sellout ⏳
1457.45 s
[ghc-9.10.1-with-packages:post-build]
1457.81 s
[ghc-9.10.1-with-packages:post-build] Pushing /nix/store/jc9bac0w3csvmws2q7gr2z13y8n7q0wl-ghc-9.10.1-with-packages (4.91 MiB)
1460.43 s
[ghc-9.10.1-with-packages:post-build]
1460.44 s
[ghc-9.10.1-with-packages:post-build] All done.
1460.60 s
[ghc-9.10.1-with-packages:post-build] Uploading to the NixCI cache: /nix/store/jc9bac0w3csvmws2q7gr2z13y8n7q0wl-ghc-9.10.1-with-packages
1461.12 s
[ghc-9.10.1-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1461.42 s
[ghc-9.10.1-with-packages:post-build] copying 1 paths...
1461.42 s
[ghc-9.10.1-with-packages:post-build] copying path '/nix/store/jc9bac0w3csvmws2q7gr2z13y8n7q0wl-ghc-9.10.1-with-packages' to 'https://cache.nix-ci.com'...
1463.64 s
[ghc-9.10.1-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1464.49 s
[ghc-9.10.1-with-packages:post-build] copying 1 paths...
1464.49 s
[ghc-9.10.1-with-packages:post-build] copying path '/nix/store/b4v4wq219rkjibwwqvn37vpv6m4hv8i8-ghc-9.10.1-with-packages.drv' to 'https://cache.nix-ci.com'...
1464.98 s
Progress: 12 of 14 built, 155 of 155 downloaded from cache
1465.10 s
Building /nix/store/cj4qsp0ci3z3x2j3y7r6y339yfw142mj-all-packages.drv
1465.30 s
[all-packages] created 3 symlinks in user environment
1465.42 s
[all-packages:post-build] Uploading to cachix cache "sellout": /nix/store/aq26q58l14zxh1nx8iq3v354n4gyvxav-all-packages
1466.57 s
[all-packages:post-build] Pushing 1 paths (139 are already present) using zstd to cache sellout ⏳
1466.58 s
[all-packages:post-build]
1466.91 s
[all-packages:post-build] Pushing /nix/store/aq26q58l14zxh1nx8iq3v354n4gyvxav-all-packages (872.00 B)
1467.87 s
[all-packages:post-build]
1467.87 s
[all-packages:post-build] All done.
1467.99 s
[all-packages:post-build] Uploading to the NixCI cache: /nix/store/aq26q58l14zxh1nx8iq3v354n4gyvxav-all-packages
1468.48 s
[all-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1468.72 s
[all-packages:post-build] copying 1 paths...
1468.72 s
[all-packages:post-build] copying path '/nix/store/aq26q58l14zxh1nx8iq3v354n4gyvxav-all-packages' to 'https://cache.nix-ci.com'...
1469.61 s
[all-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1470.08 s
[all-packages:post-build] copying 1 paths...
1470.08 s
[all-packages:post-build] copying path '/nix/store/cj4qsp0ci3z3x2j3y7r6y339yfw142mj-all-packages.drv' to 'https://cache.nix-ci.com'...
1470.46 s
Progress: 13 of 14 built, 155 of 155 downloaded from cache
1470.46 s
Progress: 14 of 14 built, 155 of 155 downloaded from cache
1470.46 s
/nix/store/aq26q58l14zxh1nx8iq3v354n4gyvxav-all-packages
1470.67 s
Build succeeded.