build packages.x86_64-linux.ghc9121_all
593.14 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
593.14 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
593.14 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
593.14 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
593.14 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
593.14 s
[algebraic-graphs]
593.14 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertices1 ============
593.14 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
593.14 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
593.14 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
593.14 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
593.14 s
[algebraic-graphs]
593.14 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edges1 ============
593.14 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
593.14 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
593.14 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
593.14 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlays1 ============
596.02 s
[algebraic-graphs] OK: overlays1 [x] == x
596.02 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connects1 ============
596.02 s
[algebraic-graphs] OK: connects1 [x] == x
596.02 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.isSubgraphOf ============
596.02 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
596.02 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
596.02 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
596.02 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasVertex ============
596.02 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasEdge ============
596.02 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
596.02 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
596.02 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
596.02 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexCount ============
596.02 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
596.02 s
[algebraic-graphs] OK: vertexCount x >= 1
596.02 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeCount ============
596.02 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
596.02 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
596.02 s
[algebraic-graphs] OK: edgeCount == length . edgeList
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexList1 ============
596.02 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
596.02 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeList ============
596.02 s
[algebraic-graphs] OK: edgeList (vertex x) == []
596.02 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
596.02 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
596.02 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
596.02 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexSet ============
596.02 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
596.02 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
596.02 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeSet ============
596.02 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
596.02 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
596.02 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.preSet ============
596.02 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
596.02 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
596.02 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.postSet ============
596.02 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
596.02 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
596.02 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.path1 ============
596.02 s
[algebraic-graphs] OK: path1 [x] == vertex x
596.02 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
596.02 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.circuit1 ============
596.02 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
596.02 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
596.02 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.clique1 ============
596.02 s
[algebraic-graphs] OK: clique1 [x] == vertex x
596.02 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
596.02 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
596.02 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
596.02 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.biclique1 ============
596.02 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
596.02 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.star ============
596.02 s
[algebraic-graphs] OK: star x [] == vertex x
596.02 s
[algebraic-graphs] OK: star x [y] == edge x y
596.02 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.stars1 ============
596.02 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
596.02 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
596.02 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
596.02 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
596.02 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.tree ============
596.02 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
596.02 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
596.02 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
596.02 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeVertex1 ============
596.02 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
596.02 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
596.02 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
596.02 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
596.02 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeEdge ============
596.02 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
596.02 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
596.02 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
596.02 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.replaceVertex ============
596.02 s
[algebraic-graphs] OK: replaceVertex x x == id
596.02 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
596.02 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.mergeVertices ============
596.02 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
596.02 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
596.02 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
596.02 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transpose ============
596.02 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
596.02 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
596.02 s
[algebraic-graphs] OK: transpose . transpose == id
596.02 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.gmap ============
596.02 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
596.02 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
596.02 s
[algebraic-graphs] OK: gmap id == id
596.02 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induce1 ============
596.02 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
596.02 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
596.02 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
596.02 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induceJust1 ============
596.02 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
596.02 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
596.02 s
[algebraic-graphs] OK: induceJust1 . gmap Just == Just
596.02 s
[algebraic-graphs] OK: induceJust1 . gmap (\x -> if p x then Just x else Nothing) == induce1 p
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.closure ============
596.02 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
596.02 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
596.02 s
[algebraic-graphs] OK: closure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
596.02 s
[algebraic-graphs] OK: closure (path1 $ nub xs) == reflexiveClosure (clique1 $ nub xs)
596.02 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
596.02 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
596.02 s
[algebraic-graphs] OK: closure . closure == closure
596.02 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.reflexiveClosure ============
596.02 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
596.02 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
596.02 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
596.02 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.symmetricClosure ============
596.02 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
596.02 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges1 [(x,y), (y,x)]
596.02 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
596.02 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transitiveClosure ============
596.02 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
596.02 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
596.02 s
[algebraic-graphs] OK: transitiveClosure (path1 $ nub xs) == clique1 (nub $ xs)
596.02 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ NonEmpty.Graph.============
596.02 s
[algebraic-graphs] OK: Axioms of non-empty graphs
596.02 s
[algebraic-graphs] OK: Theorems of non-empty graphs
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ Ord (NonEmpty.Graph a) ============
596.02 s
[algebraic-graphs] OK: vertex 1 < vertex 2
596.02 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
596.02 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
596.02 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
596.02 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
596.02 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
596.02 s
[algebraic-graphs] OK: x <= x + y
596.02 s
[algebraic-graphs] OK: x + y <= x * y
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ Functor (NonEmpty.Graph a) ============
596.02 s
[algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
596.02 s
[algebraic-graphs] OK: fmap f (edge x y) == edge (f x) (f y)
596.02 s
[algebraic-graphs] OK: fmap id == id
596.02 s
[algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
596.02 s
[algebraic-graphs]
596.02 s
[algebraic-graphs] ============ Monad (NonEmpty.Graph a) ============
596.02 s
[algebraic-graphs] OK: (vertex x >>= f) == f x
597.52 s
[algebraic-graphs] OK: (edge x y >>= f) == connect (f x) (f y)
597.52 s
[algebraic-graphs] OK: (vertices1 xs >>= f) == overlays1 (fmap f xs)
597.52 s
[algebraic-graphs] OK: (x >>= vertex) == x
597.52 s
[algebraic-graphs] OK: ((x >>= f) >>= g) == (x >>= (\y -> (f y) >>= g))
597.52 s
[algebraic-graphs]
597.52 s
[algebraic-graphs] ============ NonEmpty.Graph.toNonEmpty ============
597.52 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
597.52 s
[algebraic-graphs] OK: toNonEmpty (toGraph x) == Just (x :: NonEmpty.Graph a)
597.52 s
[algebraic-graphs]
597.52 s
[algebraic-graphs] ============ NonEmpty.Graph.vertex ============
597.52 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
597.52 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
597.52 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
597.52 s
[algebraic-graphs] OK: size (vertex x) == 1
597.52 s
[algebraic-graphs]
597.52 s
[algebraic-graphs] ============ NonEmpty.Graph.edge ============
597.52 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
597.52 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
597.52 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
597.52 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
597.52 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
597.52 s
[algebraic-graphs]
597.52 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay ============
597.52 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
597.52 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
597.52 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
597.52 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
597.53 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
597.53 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
597.53 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
597.53 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay1 ============
597.53 s
[algebraic-graphs] OK: overlay1 empty x == x
597.53 s
[algebraic-graphs] OK: x /= empty ==> overlay1 x y == overlay (fromJust $ toNonEmpty x) y
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.connect ============
597.53 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
597.53 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
597.53 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
597.53 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
597.53 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
597.53 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
597.53 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
597.53 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
597.53 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
597.53 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.vertices1 ============
597.53 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
597.53 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
597.53 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
597.53 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.edges1 ============
597.53 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
597.53 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
597.53 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.overlays1 ============
597.53 s
[algebraic-graphs] OK: overlays1 [x] == x
597.53 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.connects1 ============
597.53 s
[algebraic-graphs] OK: connects1 [x] == x
597.53 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.foldg1 ============
597.53 s
[algebraic-graphs] OK: foldg1 vertex overlay connect == id
597.53 s
[algebraic-graphs] OK: foldg1 vertex overlay (flip connect) == transpose
597.53 s
[algebraic-graphs] OK: foldg1 (const 1) (+) (+) == size
597.53 s
[algebraic-graphs] OK: foldg1 (== x) (||) (||) == hasVertex x
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.isSubgraphOf ============
597.53 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
597.53 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
597.53 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
597.53 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.(===) ============
597.53 s
[algebraic-graphs] OK: x === x == True
597.53 s
[algebraic-graphs] OK: x + y === x + y == True
597.53 s
[algebraic-graphs] OK: 1 + 2 === 2 + 1 == False
597.53 s
[algebraic-graphs] OK: x + y === x * y == False
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.size ============
597.53 s
[algebraic-graphs] OK: size (vertex x) == 1
597.53 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
597.53 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
597.53 s
[algebraic-graphs] OK: size x >= 1
597.53 s
[algebraic-graphs] OK: size x >= vertexCount x
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.hasVertex ============
597.53 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.hasEdge ============
597.53 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
597.53 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
597.53 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
597.53 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexCount ============
597.53 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
597.53 s
[algebraic-graphs] OK: vertexCount x >= 1
597.53 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeCount ============
597.53 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
597.53 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
597.53 s
[algebraic-graphs] OK: edgeCount == length . edgeList
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexList1 ============
597.53 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
597.53 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeList ============
597.53 s
[algebraic-graphs] OK: edgeList (vertex x) == []
597.53 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
597.53 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
597.53 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
597.53 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexSet ============
597.53 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
597.53 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
597.53 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeSet ============
597.53 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
597.53 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
597.53 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.path1 ============
597.53 s
[algebraic-graphs] OK: path1 [x] == vertex x
597.53 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
597.53 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.circuit1 ============
597.53 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
597.53 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
597.53 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.clique1 ============
597.53 s
[algebraic-graphs] OK: clique1 [x] == vertex x
597.53 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
597.53 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
597.53 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
597.53 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.biclique1 ============
597.53 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
597.53 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.star ============
597.53 s
[algebraic-graphs] OK: star x [] == vertex x
597.53 s
[algebraic-graphs] OK: star x [y] == edge x y
597.53 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.stars1 ============
597.53 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
597.53 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
597.53 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
597.53 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
597.53 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.tree ============
597.53 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
597.53 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
597.53 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
597.53 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.mesh1 ============
597.53 s
[algebraic-graphs] OK: mesh1 [x] [y] == vertex (x, y)
597.53 s
[algebraic-graphs] OK: mesh1 xs ys == box (path1 xs) (path1 ys)
597.53 s
[algebraic-graphs] OK: mesh1 [1,2,3] ['a', 'b'] == <correct result>
597.53 s
[algebraic-graphs] OK: size (mesh xs ys) == max 1 (3 * length xs * length ys - length xs - length ys -1)
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.torus1 ============
597.53 s
[algebraic-graphs] OK: torus1 [x] [y] == edge (x,y) (x,y)
597.53 s
[algebraic-graphs] OK: torus1 xs ys == box (circuit1 xs) (circuit1 ys)
597.53 s
[algebraic-graphs] OK: torus1 [1,2] ['a', 'b'] == <correct result>
597.53 s
[algebraic-graphs] OK: size (torus1 xs ys) == max 1 (3 * length xs * length ys)
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.removeVertex1 ============
597.53 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
597.53 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
597.53 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
597.53 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
597.53 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.removeEdge ============
597.53 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
597.53 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
597.53 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
597.53 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
597.53 s
[algebraic-graphs] OK: size (removeEdge x y z) <= 3 * size z
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.replaceVertex ============
597.53 s
[algebraic-graphs] OK: replaceVertex x x == id
597.53 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
597.53 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
597.53 s
[algebraic-graphs]
597.53 s
[algebraic-graphs] ============ NonEmpty.Graph.mergeVertices ============
597.53 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
604.83 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
604.83 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
604.87 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ NonEmpty.Graph.splitVertex1 ============
604.87 s
[algebraic-graphs] OK: splitVertex1 x [x] == id
604.87 s
[algebraic-graphs] OK: splitVertex1 x [y] == replaceVertex x y
604.87 s
[algebraic-graphs] OK: splitVertex1 1 [0,1] $ 1 * (2 + 3) == (0 + 1) * (2 + 3)
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ NonEmpty.Graph.transpose ============
604.87 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
604.87 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
604.87 s
[algebraic-graphs] OK: transpose . transpose == id
604.87 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
604.87 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ NonEmpty.Graph.induce1 ============
604.87 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
604.87 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
604.87 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
604.87 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ NonEmpty.Graph.induceJust1 ============
604.87 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
604.87 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
604.87 s
[algebraic-graphs] OK: induceJust1 . fmap Just == Just
604.87 s
[algebraic-graphs] OK: induceJust1 . fmap (\x -> if p x then Just x else Nothing) == induce1 p
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ NonEmpty.Graph.simplify ============
604.87 s
[algebraic-graphs] OK: simplify == id
604.87 s
[algebraic-graphs] OK: size (simplify x) <= size x
604.87 s
[algebraic-graphs] OK: simplify 1 === 1
604.87 s
[algebraic-graphs] OK: simplify (1 + 1) === 1
604.87 s
[algebraic-graphs] OK: simplify (1 + 2 + 1) === 1 + 2
604.87 s
[algebraic-graphs] OK: simplify (1 * 1 * 1) === 1 * 1
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsify ============
604.87 s
[algebraic-graphs] OK: sort . reachable x == sort . rights . reachable (sparsify x) . Right
604.87 s
[algebraic-graphs] OK: vertexCount (sparsify x) <= vertexCount x + size x + 1
604.87 s
[algebraic-graphs] OK: edgeCount (sparsify x) <= 3 * size x
604.87 s
[algebraic-graphs] OK: size (sparsify x) <= 3 * size x
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsifyKL ============
604.87 s
[algebraic-graphs] OK: sort . reachable x == sort . filter (<= n) . reachable (sparsifyKL n x)
604.87 s
[algebraic-graphs] OK: length (vertices $ sparsifyKL n x) <= vertexCount x + size x + 1
604.87 s
[algebraic-graphs] OK: length (edges $ sparsifyKL n x) <= 3 * size x
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ NonEmpty.Graph.box ============
604.87 s
[algebraic-graphs] OK: box (path1 [0,1]) (path1 ['a','b']) == <correct result>
604.87 s
[algebraic-graphs] OK: box x y ~~ box y x
604.87 s
[algebraic-graphs] OK: box x (overlay y z) == overlay (box x y) (box x z)
604.87 s
[algebraic-graphs] OK: box x (vertex ()) ~~ x
604.87 s
[algebraic-graphs] OK: box x (box y z) ~~ box (box x y) z
604.87 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
604.87 s
[algebraic-graphs] OK: vertexCount (box x y) == vertexCount x * vertexCount y
604.87 s
[algebraic-graphs] OK: edgeCount (box x y) <= vertexCount x * edgeCount y + edgeCount x * vertexCount y
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation ============
604.87 s
[algebraic-graphs] OK: Axioms of graphs
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.consistent ============
604.87 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] OK: consistent empty == True
604.87 s
[algebraic-graphs] OK: consistent (vertex x) == True
604.87 s
[algebraic-graphs] OK: consistent (overlay x y) == True
604.87 s
[algebraic-graphs] OK: consistent (connect x y) == True
604.87 s
[algebraic-graphs] OK: consistent (edge x y) == True
604.87 s
[algebraic-graphs] OK: consistent (edges xs) == True
604.87 s
[algebraic-graphs] OK: consistent (stars xs) == True
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.Show ============
604.87 s
[algebraic-graphs] OK: show (empty ) == "empty"
604.87 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
604.87 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
604.87 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
604.87 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
604.87 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
604.87 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
604.87 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
604.87 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
604.87 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.Ord ============
604.87 s
[algebraic-graphs] OK: vertex 1 < vertex 2
604.87 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
604.87 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
604.87 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
604.87 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
604.87 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
604.87 s
[algebraic-graphs] OK: x <= x + y
604.87 s
[algebraic-graphs] OK: x + y <= x * y
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.empty ============
604.87 s
[algebraic-graphs] OK: isEmpty empty == True
604.87 s
[algebraic-graphs] OK: hasVertex x empty == False
604.87 s
[algebraic-graphs] OK: vertexCount empty == 0
604.87 s
[algebraic-graphs] OK: edgeCount empty == 0
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.vertex ============
604.87 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
604.87 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
604.87 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
604.87 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.edge ============
604.87 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
604.87 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
604.87 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
604.87 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
604.87 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.overlay ============
604.87 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
604.87 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
604.87 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
604.87 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
604.87 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
604.87 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
604.87 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
604.87 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.connect ============
604.87 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
604.87 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
604.87 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
604.87 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
604.87 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
604.87 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
604.87 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
604.87 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
604.87 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
604.87 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.vertices ============
604.87 s
[algebraic-graphs] OK: vertices [] == empty
604.87 s
[algebraic-graphs] OK: vertices [x] == vertex x
604.87 s
[algebraic-graphs] OK: vertices == overlays . map vertex
604.87 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
604.87 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
604.87 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.edges ============
604.87 s
[algebraic-graphs] OK: edges [] == empty
604.87 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
604.87 s
[algebraic-graphs] OK: edges == overlays . map (uncurry edge)
604.87 s
[algebraic-graphs] OK: edgeCount . edges == length . nub
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.overlays ============
604.87 s
[algebraic-graphs] OK: overlays [] == empty
604.87 s
[algebraic-graphs] OK: overlays [x] == x
604.87 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
604.87 s
[algebraic-graphs] OK: overlays == foldr overlay empty
604.87 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.connects ============
604.87 s
[algebraic-graphs] OK: connects [] == empty
604.87 s
[algebraic-graphs] OK: connects [x] == x
604.87 s
[algebraic-graphs] OK: connects [x,y] == connect x y
604.87 s
[algebraic-graphs] OK: connects == foldr connect empty
604.87 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.isSubgraphOf ============
604.87 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
604.87 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
604.87 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
604.87 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
604.87 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
604.87 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
604.87 s
[algebraic-graphs]
604.87 s
[algebraic-graphs] ============ Relation.toGraph et al. ============
604.87 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
604.87 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
604.87 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
604.87 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
604.87 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
604.87 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
604.87 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
604.87 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
604.87 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
604.87 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
604.87 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
604.87 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
604.87 s
[algebraic-graphs] OK: edgeSet == Algebra.Graph.AdjacencyMap.edgeSet . foldg empty vertex overlay connect
604.87 s
[algebraic-graphs] OK: preSet x == Algebra.Graph.AdjacencyMap.preSet x . toAdjacencyMap
604.87 s
[algebraic-graphs] OK: preIntSet x == Algebra.Graph.AdjacencyIntMap.preIntSet x . toAdjacencyIntMap
604.87 s
[algebraic-graphs] OK: postSet x == Algebra.Graph.AdjacencyMap.postSet x . toAdjacencyMap
604.87 s
[algebraic-graphs] OK: postIntSet x == Algebra.Graph.AdjacencyIntMap.postIntSet x . toAdjacencyIntMap
608.76 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
608.76 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
608.76 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
608.76 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
608.76 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
608.76 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
608.76 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
608.76 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
608.76 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.foldg ============
608.76 s
[algebraic-graphs] OK: foldg empty vertex overlay connect == id
608.76 s
[algebraic-graphs] OK: foldg empty vertex overlay (flip connect) == transpose
608.76 s
[algebraic-graphs] OK: foldg 1 (const 1) (+) (+) == size
608.76 s
[algebraic-graphs] OK: foldg True (const False) (&&) (&&) == isEmpty
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.isEmpty ============
608.76 s
[algebraic-graphs] OK: isEmpty empty == True
608.76 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
608.76 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
608.76 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
608.76 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.hasVertex ============
608.76 s
[algebraic-graphs] OK: hasVertex x empty == False
608.76 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
608.76 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.hasEdge ============
608.76 s
[algebraic-graphs] OK: hasEdge x y empty == False
608.76 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
608.76 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
608.76 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
608.76 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.vertexCount ============
608.76 s
[algebraic-graphs] OK: vertexCount empty == 0
608.76 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
608.76 s
[algebraic-graphs] OK: vertexCount == length . vertexList
608.76 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.edgeCount ============
608.76 s
[algebraic-graphs] OK: edgeCount empty == 0
608.76 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
608.76 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
608.76 s
[algebraic-graphs] OK: edgeCount == length . edgeList
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.vertexList ============
608.76 s
[algebraic-graphs] OK: vertexList empty == []
608.76 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
608.76 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.vertexSet ============
608.76 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
608.76 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
608.76 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.vertexIntSet ============
608.76 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
608.76 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
608.76 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
608.76 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.edgeList ============
608.76 s
[algebraic-graphs] OK: edgeList empty == []
608.76 s
[algebraic-graphs] OK: edgeList (vertex x) == []
608.76 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
608.76 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
608.76 s
[algebraic-graphs] OK: edgeList . edges == nub . sort
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.edgeSet ============
608.76 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
608.76 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
608.76 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
608.76 s
[algebraic-graphs] OK: edgeSet . edges == Set.fromList
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.adjacencyList ============
608.76 s
[algebraic-graphs] OK: adjacencyList empty == []
608.76 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
608.76 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [])]
608.76 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, []), (2, [1,3]), (3, [])]
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.preSet ============
608.76 s
[algebraic-graphs] OK: preSet x empty == Set.empty
608.76 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
608.76 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
608.76 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.preIntSet ============
608.76 s
[algebraic-graphs] OK: preIntSet x empty == IntSet.empty
608.76 s
[algebraic-graphs] OK: preIntSet x (vertex x) == IntSet.empty
608.76 s
[algebraic-graphs] OK: preIntSet 1 (edge 1 2) == IntSet.empty
608.76 s
[algebraic-graphs] OK: preIntSet y (edge x y) == IntSet.fromList [x]
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.postSet ============
608.76 s
[algebraic-graphs] OK: postSet x empty == Set.empty
608.76 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
608.76 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
608.76 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.postIntSet ============
608.76 s
[algebraic-graphs] OK: postIntSet x empty == IntSet.empty
608.76 s
[algebraic-graphs] OK: postIntSet x (vertex x) == IntSet.empty
608.76 s
[algebraic-graphs] OK: postIntSet 2 (edge 1 2) == IntSet.empty
608.76 s
[algebraic-graphs] OK: postIntSet x (edge x y) == IntSet.fromList [y]
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.path ============
608.76 s
[algebraic-graphs] OK: path [] == empty
608.76 s
[algebraic-graphs] OK: path [x] == vertex x
608.76 s
[algebraic-graphs] OK: path [x,y] == edge x y
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.circuit ============
608.76 s
[algebraic-graphs] OK: circuit [] == empty
608.76 s
[algebraic-graphs] OK: circuit [x] == edge x x
608.76 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.clique ============
608.76 s
[algebraic-graphs] OK: clique [] == empty
608.76 s
[algebraic-graphs] OK: clique [x] == vertex x
608.76 s
[algebraic-graphs] OK: clique [x,y] == edge x y
608.76 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
608.76 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.biclique ============
608.76 s
[algebraic-graphs] OK: biclique [] [] == empty
608.76 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
608.76 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
608.76 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
608.76 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.star ============
608.76 s
[algebraic-graphs] OK: star x [] == vertex x
608.76 s
[algebraic-graphs] OK: star x [y] == edge x y
608.76 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
608.76 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.stars ============
608.76 s
[algebraic-graphs] OK: stars [] == empty
608.76 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
608.76 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
608.76 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
608.76 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
608.76 s
[algebraic-graphs] OK: stars . adjacencyList == id
608.76 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.tree ============
608.76 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
608.76 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
608.76 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
608.76 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.forest ============
608.76 s
[algebraic-graphs] OK: forest [] == empty
608.76 s
[algebraic-graphs] OK: forest [x] == tree x
608.76 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
608.76 s
[algebraic-graphs] OK: forest == overlays . map tree
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.removeVertex ============
608.76 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
608.76 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
608.76 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
608.76 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
608.76 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.removeEdge ============
608.76 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
608.76 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
608.76 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
608.76 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
608.76 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.replaceVertex ============
608.76 s
[algebraic-graphs] OK: replaceVertex x x == id
608.76 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
608.76 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
608.76 s
[algebraic-graphs]
608.76 s
[algebraic-graphs] ============ Relation.mergeVertices ============
608.76 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
633.92 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
633.92 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
633.96 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
633.96 s
[algebraic-graphs]
633.96 s
[algebraic-graphs] ============ Relation.transpose ============
633.96 s
[algebraic-graphs] OK: transpose empty == empty
633.96 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
633.96 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
633.96 s
[algebraic-graphs] OK: transpose . transpose == id
633.96 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
633.96 s
[algebraic-graphs]
633.96 s
[algebraic-graphs] ============ Relation.gmap ============
633.96 s
[algebraic-graphs] OK: gmap f empty == empty
633.96 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
633.96 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
633.96 s
[algebraic-graphs] OK: gmap id == id
633.96 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
633.96 s
[algebraic-graphs]
633.96 s
[algebraic-graphs] ============ Relation.induce ============
633.96 s
[algebraic-graphs] OK: induce (const True ) x == x
633.96 s
[algebraic-graphs] OK: induce (const False) x == empty
633.96 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
633.96 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
633.96 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
633.96 s
[algebraic-graphs]
633.96 s
[algebraic-graphs] ============ Relation.compose ============
633.96 s
[algebraic-graphs] OK: compose empty x == empty
633.96 s
[algebraic-graphs] OK: compose x empty == empty
633.96 s
[algebraic-graphs] OK: compose (vertex x) y == empty
633.96 s
[algebraic-graphs] OK: compose x (vertex y) == empty
633.96 s
[algebraic-graphs] OK: compose x (compose y z) == compose (compose x y) z
633.96 s
[algebraic-graphs] OK: compose x (overlay y z) == overlay (compose x y) (compose x z)
633.96 s
[algebraic-graphs] OK: compose (overlay x y) z == overlay (compose x z) (compose y z)
633.96 s
[algebraic-graphs] OK: compose (edge x y) (edge y z) == edge x z
633.96 s
[algebraic-graphs] OK: compose (path [1..5]) (path [1..5]) == edges [(1,3),(2,4),(3,5)]
633.96 s
[algebraic-graphs] OK: compose (circuit [1..5]) (circuit [1..5]) == circuit [1,3,5,2,4]
633.96 s
[algebraic-graphs]
633.96 s
[algebraic-graphs] ============ Relation.closure ============
633.96 s
[algebraic-graphs] OK: closure empty == empty
633.96 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
633.96 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
633.96 s
[algebraic-graphs] OK: closure (edge x y) == edges [(x,x), (x,y), (y,y)]
633.96 s
[algebraic-graphs] OK: closure (path $ nub xs) == reflexiveClosure (clique $ nub xs)
633.96 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
633.96 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
633.96 s
[algebraic-graphs] OK: closure . closure == closure
633.96 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
633.96 s
[algebraic-graphs]
633.96 s
[algebraic-graphs] ============ Relation.reflexiveClosure ============
633.97 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
633.97 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
633.97 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
633.97 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges [(x,x), (x,y), (y,y)]
633.97 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Relation.symmetricClosure ============
633.97 s
[algebraic-graphs] OK: symmetricClosure empty == empty
633.97 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
633.97 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges [(x,y), (y,x)]
633.97 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
633.97 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Relation.transitiveClosure ============
633.97 s
[algebraic-graphs] OK: transitiveClosure empty == empty
633.97 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
633.97 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
633.97 s
[algebraic-graphs] OK: transitiveClosure (path $ nub xs) == clique (nub $ xs)
633.97 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Relation.induceJust ============
633.97 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
633.97 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
633.97 s
[algebraic-graphs] OK: induceJust . gmap Just == id
633.97 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ ReflexiveRelation ============
633.97 s
[algebraic-graphs] OK: Axioms of reflexive graphs
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ TransitiveRelation ============
633.97 s
[algebraic-graphs] OK: Axioms of transitive graphs
633.97 s
[algebraic-graphs] OK: path xs == (clique xs :: TransitiveRelation Int)
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ PreorderRelation ============
633.97 s
[algebraic-graphs] OK: Axioms of preorder graphs
633.97 s
[algebraic-graphs] OK: path xs == (clique xs :: PreorderRelation Int)
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation ============
633.97 s
[algebraic-graphs] OK: Axioms of undirected graphs
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.consistent ============
633.97 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] OK: consistent empty == True
633.97 s
[algebraic-graphs] OK: consistent (vertex x) == True
633.97 s
[algebraic-graphs] OK: consistent (overlay x y) == True
633.97 s
[algebraic-graphs] OK: consistent (connect x y) == True
633.97 s
[algebraic-graphs] OK: consistent (edge x y) == True
633.97 s
[algebraic-graphs] OK: consistent (edges xs) == True
633.97 s
[algebraic-graphs] OK: consistent (stars xs) == True
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.Show ============
633.97 s
[algebraic-graphs] OK: show (empty ) == "empty"
633.97 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
633.97 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
633.97 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
633.97 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
633.97 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
633.97 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
633.97 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
633.97 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
633.97 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
633.97 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
633.97 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.toSymmetric ============
633.97 s
[algebraic-graphs] OK: toSymmetric (edge 1 2) == edge 1 2
633.97 s
[algebraic-graphs] OK: toSymmetric . fromSymmetric == id
633.97 s
[algebraic-graphs] OK: fromSymmetric . toSymmetric == symmetricClosure
633.97 s
[algebraic-graphs] OK: vertexCount . toSymmetric == vertexCount
633.97 s
[algebraic-graphs] OK: (*2) . edgeCount . toSymmetric >= edgeCount
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.fromSymmetric ============
633.97 s
[algebraic-graphs] OK: fromSymmetric (edge 1 2) == edges [(1,2), (2,1)]
633.97 s
[algebraic-graphs] OK: vertexCount . fromSymmetric == vertexCount
633.97 s
[algebraic-graphs] OK: edgeCount . fromSymmetric <= (*2) . edgeCount
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.Ord ============
633.97 s
[algebraic-graphs] OK: vertex 1 < vertex 2
633.97 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
633.97 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
633.97 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
633.97 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
633.97 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
633.97 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
633.97 s
[algebraic-graphs] OK: x <= x + y
633.97 s
[algebraic-graphs] OK: x + y <= x * y
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.empty ============
633.97 s
[algebraic-graphs] OK: isEmpty empty == True
633.97 s
[algebraic-graphs] OK: hasVertex x empty == False
633.97 s
[algebraic-graphs] OK: vertexCount empty == 0
633.97 s
[algebraic-graphs] OK: edgeCount empty == 0
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.vertex ============
633.97 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
633.97 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
633.97 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
633.97 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.edge ============
633.97 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
633.97 s
[algebraic-graphs] OK: edge x y == edge y x
633.97 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
633.97 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
633.97 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
633.97 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
633.97 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.overlay ============
633.97 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
633.97 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
633.97 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
633.97 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
633.97 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
633.97 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
633.97 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
633.97 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.connect ============
633.97 s
[algebraic-graphs] OK: connect x y == connect y x
633.97 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
633.97 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
633.97 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
633.97 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
633.97 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
633.97 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
633.97 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
633.97 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
633.97 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
633.97 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.vertices ============
633.97 s
[algebraic-graphs] OK: vertices [] == empty
633.97 s
[algebraic-graphs] OK: vertices [x] == vertex x
633.97 s
[algebraic-graphs] OK: vertices == overlays . map vertex
633.97 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
633.97 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
633.97 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.edges ============
633.97 s
[algebraic-graphs] OK: edges [] == empty
633.97 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
633.97 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
633.97 s
[algebraic-graphs]
633.97 s
[algebraic-graphs] ============ Symmetric.Relation.overlays ============
633.97 s
[algebraic-graphs] OK: overlays [] == empty
650.11 s
[algebraic-graphs] OK: overlays [x] == x
650.14 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
650.14 s
[algebraic-graphs] OK: overlays == foldr overlay empty
650.14 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.connects ============
650.14 s
[algebraic-graphs] OK: connects [] == empty
650.14 s
[algebraic-graphs] OK: connects [x] == x
650.14 s
[algebraic-graphs] OK: connects [x,y] == connect x y
650.14 s
[algebraic-graphs] OK: connects == foldr connect empty
650.14 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
650.14 s
[algebraic-graphs] OK: connects == connects . reverse
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.isSubgraphOf ============
650.14 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
650.14 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
650.14 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
650.14 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
650.14 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
650.14 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
650.14 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.toGraph et al. ============
650.14 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
650.14 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
650.14 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
650.14 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
650.14 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
650.14 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
650.14 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
650.14 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
650.14 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
650.14 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
650.14 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
650.14 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
650.14 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
650.14 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
650.14 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
650.14 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
650.14 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
650.14 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
650.14 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
650.14 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
650.14 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.isEmpty ============
650.14 s
[algebraic-graphs] OK: isEmpty empty == True
650.14 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
650.14 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
650.14 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
650.14 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.hasVertex ============
650.14 s
[algebraic-graphs] OK: hasVertex x empty == False
650.14 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
650.14 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.hasEdge ============
650.14 s
[algebraic-graphs] OK: hasEdge x y empty == False
650.14 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
650.14 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
650.14 s
[algebraic-graphs] OK: hasEdge x y (edge y x) == True
650.14 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
650.14 s
[algebraic-graphs] OK: hasEdge x y == elem (min x y, max x y) . edgeList
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.vertexCount ============
650.14 s
[algebraic-graphs] OK: vertexCount empty == 0
650.14 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
650.14 s
[algebraic-graphs] OK: vertexCount == length . vertexList
650.14 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.edgeCount ============
650.14 s
[algebraic-graphs] OK: edgeCount empty == 0
650.14 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
650.14 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
650.14 s
[algebraic-graphs] OK: edgeCount == length . edgeList
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.vertexList ============
650.14 s
[algebraic-graphs] OK: vertexList empty == []
650.14 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
650.14 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.vertexSet ============
650.14 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
650.14 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
650.14 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.vertexIntSet ============
650.14 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
650.14 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
650.14 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
650.14 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
650.14 s
[algebraic-graphs]
650.14 s
[algebraic-graphs] ============ Symmetric.Relation.edgeList ============
650.14 s
[algebraic-graphs] OK: edgeList empty == []
650.15 s
[algebraic-graphs] OK: edgeList (vertex x) == []
650.15 s
[algebraic-graphs] OK: edgeList (edge x y) == [(min x y, max y x)]
650.15 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(1,2), (2,3)]
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.edgeSet ============
650.15 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
650.15 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
650.15 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (min x y, max x y)
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.adjacencyList ============
650.15 s
[algebraic-graphs] OK: adjacencyList empty == []
650.15 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
650.15 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [1])]
650.15 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, [2]), (2, [1,3]), (3, [2])]
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.neighbours ============
650.15 s
[algebraic-graphs] OK: neighbours x empty == Set.empty
650.15 s
[algebraic-graphs] OK: neighbours x (vertex x) == Set.empty
650.15 s
[algebraic-graphs] OK: neighbours x (edge x y) == Set.fromList [y]
650.15 s
[algebraic-graphs] OK: neighbours y (edge x y) == Set.fromList [x]
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.path ============
650.15 s
[algebraic-graphs] OK: path [] == empty
650.15 s
[algebraic-graphs] OK: path [x] == vertex x
650.15 s
[algebraic-graphs] OK: path [x,y] == edge x y
650.15 s
[algebraic-graphs] OK: path == path . reverse
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.circuit ============
650.15 s
[algebraic-graphs] OK: circuit [] == empty
650.15 s
[algebraic-graphs] OK: circuit [x] == edge x x
650.15 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
650.15 s
[algebraic-graphs] OK: circuit == circuit . reverse
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.clique ============
650.15 s
[algebraic-graphs] OK: clique [] == empty
650.15 s
[algebraic-graphs] OK: clique [x] == vertex x
650.15 s
[algebraic-graphs] OK: clique [x,y] == edge x y
650.15 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
650.15 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
650.15 s
[algebraic-graphs] OK: clique == clique . reverse
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.biclique ============
650.15 s
[algebraic-graphs] OK: biclique [] [] == empty
650.15 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
650.15 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
650.15 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
650.15 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.star ============
650.15 s
[algebraic-graphs] OK: star x [] == vertex x
650.15 s
[algebraic-graphs] OK: star x [y] == edge x y
650.15 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
650.15 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.stars ============
650.15 s
[algebraic-graphs] OK: stars [] == empty
650.15 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
650.15 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
650.15 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
650.15 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
650.15 s
[algebraic-graphs] OK: stars . adjacencyList == id
650.15 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.tree ============
650.15 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
650.15 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
650.15 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
650.15 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
650.15 s
[algebraic-graphs]
650.15 s
[algebraic-graphs] ============ Symmetric.Relation.forest ============
650.15 s
[algebraic-graphs] OK: forest [] == empty
659.67 s
[algebraic-graphs] OK: forest [x] == tree x
659.67 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
659.70 s
[algebraic-graphs] OK: forest == overlays . map tree
659.70 s
[algebraic-graphs]
659.70 s
[algebraic-graphs] ============ Symmetric.Relation.removeVertex ============
659.70 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
659.70 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
659.70 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
659.70 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
659.70 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
659.70 s
[algebraic-graphs]
659.70 s
[algebraic-graphs] ============ Symmetric.Relation.removeEdge ============
659.70 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
659.70 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
659.70 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
659.70 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
659.70 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
659.70 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
659.70 s
[algebraic-graphs]
659.70 s
[algebraic-graphs] ============ Symmetric.Relation.replaceVertex ============
659.70 s
[algebraic-graphs] OK: replaceVertex x x == id
659.70 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
659.70 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
659.70 s
[algebraic-graphs]
659.70 s
[algebraic-graphs] ============ Symmetric.Relation.mergeVertices ============
659.70 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
659.70 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
659.70 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
659.70 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
659.70 s
[algebraic-graphs]
659.70 s
[algebraic-graphs] ============ Symmetric.Relation.gmap ============
659.70 s
[algebraic-graphs] OK: gmap f empty == empty
659.70 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
659.70 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
659.70 s
[algebraic-graphs] OK: gmap id == id
659.70 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
659.70 s
[algebraic-graphs]
659.70 s
[algebraic-graphs] ============ Symmetric.Relation.induce ============
659.70 s
[algebraic-graphs] OK: induce (const True ) x == x
659.70 s
[algebraic-graphs] OK: induce (const False) x == empty
659.70 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
659.70 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
659.70 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
659.70 s
[algebraic-graphs]
659.70 s
[algebraic-graphs] ============ Symmetric.Relation.induceJust ============
659.70 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
659.70 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
659.70 s
[algebraic-graphs] OK: induceJust . gmap Just == id
659.70 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
659.70 s
[algebraic-graphs]
659.70 s
[algebraic-graphs] ============ Example.Todo (Holiday) ============
659.70 s
[algebraic-graphs] OK: A todo list is semantically Maybe [a]
659.70 s
[algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
659.71 s
[algebraic-graphs] OK: The connect operator (*) adds dependency between items
659.71 s
[algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
659.71 s
[algebraic-graphs] OK: Introduce item priority to schedule the todo list
659.71 s
[algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Example.Todo (Commandline) ============
659.71 s
[algebraic-graphs] OK: The pull connect operator maintains command line semantics
659.71 s
[algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
659.71 s
[algebraic-graphs] OK: The usual connect operator breaks semantics
659.71 s
[algebraic-graphs] OK: Transform command lines by adding optimisation flag
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Typed ============
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Typed.fromAdjacencyMap ============
659.71 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
659.71 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
659.71 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
659.71 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
659.71 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
659.71 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
659.71 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
659.71 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Typed.dfsForest ============
659.71 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
659.71 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
659.71 s
[algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
659.71 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
659.71 s
[algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
659.71 s
[algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
659.71 s
[algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Typed.dfsForestFrom ============
659.71 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
659.71 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
659.71 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
659.71 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
659.71 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
659.71 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
659.71 s
[algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
659.71 s
[algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
659.71 s
[algebraic-graphs] OK: dfsForestFrom % x $ [] == []
659.71 s
[algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Typed.dfs ============
659.71 s
[algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
659.71 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
659.71 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
659.71 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
659.71 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
659.71 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
659.71 s
[algebraic-graphs] OK: dfs % x $ [] == []
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
659.71 s
[algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Typed.topSort ============
659.71 s
[algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
659.71 s
[algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected ============
659.71 s
[algebraic-graphs] OK: Axioms of undirected graphs
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected.Show ============
659.71 s
[algebraic-graphs] OK: show (empty ) == "empty"
659.71 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
659.71 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
659.71 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
659.71 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
659.71 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
659.71 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
659.71 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
659.71 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
659.71 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
659.71 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
659.71 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected.toUndirected ============
659.71 s
[algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
659.71 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
659.71 s
[algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
659.71 s
[algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
659.71 s
[algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
659.71 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
659.71 s
[algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
659.71 s
[algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected.complement ================
659.71 s
[algebraic-graphs] OK: complement empty == empty
659.71 s
[algebraic-graphs] OK: complement (vertex x) == vertex x
659.71 s
[algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
659.71 s
[algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
659.71 s
[algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
659.71 s
[algebraic-graphs] OK: complement . complement == id
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected.Ord ============
659.71 s
[algebraic-graphs] OK: vertex 1 < vertex 2
659.71 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
659.71 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
659.71 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
659.71 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
659.71 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
659.71 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
659.71 s
[algebraic-graphs] OK: x <= x + y
659.71 s
[algebraic-graphs] OK: x + y <= x * y
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected.empty ============
659.71 s
[algebraic-graphs] OK: isEmpty empty == True
659.71 s
[algebraic-graphs] OK: hasVertex x empty == False
659.71 s
[algebraic-graphs] OK: vertexCount empty == 0
659.71 s
[algebraic-graphs] OK: edgeCount empty == 0
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected.vertex ============
659.71 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
659.71 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
659.71 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
659.71 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
659.71 s
[algebraic-graphs]
659.71 s
[algebraic-graphs] ============ Graph.Undirected.edge ============
659.71 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
659.71 s
[algebraic-graphs] OK: edge x y == edge y x
671.69 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
671.69 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
671.69 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
671.72 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
671.72 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
671.72 s
[algebraic-graphs]
671.72 s
[algebraic-graphs] ============ Graph.Undirected.overlay ============
671.72 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
671.72 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
671.72 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
671.72 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
671.72 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
671.72 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
671.72 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
671.72 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
671.72 s
[algebraic-graphs]
671.72 s
[algebraic-graphs] ============ Graph.Undirected.connect ============
671.72 s
[algebraic-graphs] OK: connect x y == connect y x
671.72 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
671.72 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
671.72 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
671.72 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
671.72 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
671.72 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
671.72 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
671.72 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
671.72 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
671.72 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
671.72 s
[algebraic-graphs]
671.72 s
[algebraic-graphs] ============ Graph.Undirected.vertices ============
671.72 s
[algebraic-graphs] OK: vertices [] == empty
671.72 s
[algebraic-graphs] OK: vertices [x] == vertex x
671.72 s
[algebraic-graphs] OK: vertices == overlays . map vertex
671.72 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
671.72 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
671.72 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
671.72 s
[algebraic-graphs]
671.72 s
[algebraic-graphs] ============ Graph.Undirected.edges ============
671.72 s
[algebraic-graphs] OK: edges [] == empty
671.72 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
671.72 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
671.72 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.overlays ============
671.73 s
[algebraic-graphs] OK: overlays [] == empty
671.73 s
[algebraic-graphs] OK: overlays [x] == x
671.73 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
671.73 s
[algebraic-graphs] OK: overlays == foldr overlay empty
671.73 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.connects ============
671.73 s
[algebraic-graphs] OK: connects [] == empty
671.73 s
[algebraic-graphs] OK: connects [x] == x
671.73 s
[algebraic-graphs] OK: connects [x,y] == connect x y
671.73 s
[algebraic-graphs] OK: connects == foldr connect empty
671.73 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
671.73 s
[algebraic-graphs] OK: connects == connects . reverse
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
671.73 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
671.73 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
671.73 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
671.73 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
671.73 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
671.73 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
671.73 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.path ============
671.73 s
[algebraic-graphs] OK: path [] == empty
671.73 s
[algebraic-graphs] OK: path [x] == vertex x
671.73 s
[algebraic-graphs] OK: path [x,y] == edge x y
671.73 s
[algebraic-graphs] OK: path == path . reverse
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.circuit ============
671.73 s
[algebraic-graphs] OK: circuit [] == empty
671.73 s
[algebraic-graphs] OK: circuit [x] == edge x x
671.73 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
671.73 s
[algebraic-graphs] OK: circuit == circuit . reverse
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.clique ============
671.73 s
[algebraic-graphs] OK: clique [] == empty
671.73 s
[algebraic-graphs] OK: clique [x] == vertex x
671.73 s
[algebraic-graphs] OK: clique [x,y] == edge x y
671.73 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
671.73 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
671.73 s
[algebraic-graphs] OK: clique == clique . reverse
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.biclique ============
671.73 s
[algebraic-graphs] OK: biclique [] [] == empty
671.73 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
671.73 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
671.73 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
671.73 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.star ============
671.73 s
[algebraic-graphs] OK: star x [] == vertex x
671.73 s
[algebraic-graphs] OK: star x [y] == edge x y
671.73 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
671.73 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.stars ============
671.73 s
[algebraic-graphs] OK: stars [] == empty
671.73 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
671.73 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
671.73 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
671.73 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
671.73 s
[algebraic-graphs] OK: stars . adjacencyList == id
671.73 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.tree ============
671.73 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
671.73 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
671.73 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
671.73 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.forest ============
671.73 s
[algebraic-graphs] OK: forest [] == empty
671.73 s
[algebraic-graphs] OK: forest [x] == tree x
671.73 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
671.73 s
[algebraic-graphs] OK: forest == overlays . map tree
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.removeVertex ============
671.73 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
671.73 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
671.73 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
671.73 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
671.73 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.removeEdge ============
671.73 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
671.73 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
671.73 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
671.73 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
671.73 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
671.73 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
671.73 s
[algebraic-graphs] OK: replaceVertex x x == id
671.73 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
671.73 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
671.73 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
671.73 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
671.73 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
671.73 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.gmap ============
671.73 s
[algebraic-graphs] OK: gmap f empty == empty
671.73 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
671.73 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
671.73 s
[algebraic-graphs] OK: gmap id == id
671.73 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.induce ============
671.73 s
[algebraic-graphs] OK: induce (const True ) x == x
671.73 s
[algebraic-graphs] OK: induce (const False) x == empty
671.73 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
671.73 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
671.73 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
671.73 s
[algebraic-graphs]
671.73 s
[algebraic-graphs] ============ Graph.Undirected.induceJust ============
671.73 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
671.73 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
671.73 s
[algebraic-graphs] OK: induceJust . gmap Just == id
671.73 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
671.73 s
[algebraic-graphs] Test suite main: PASS
671.73 s
[algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
671.73 s
[algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
671.73 s
[algebraic-graphs] checkPhase completed in 2 minutes 19 seconds
671.73 s
[algebraic-graphs] Phase: haddockPhase
672.30 s
[algebraic-graphs] Preprocessing library for algebraic-graphs-0.7...
672.30 s
[algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7...
672.54 s
[algebraic-graphs] [ 1 of 29] Compiling Algebra.Graph.AdjacencyMap ( src/Algebra/Graph/AdjacencyMap.hs, nothing ) [HIE file is missing]
672.92 s
[algebraic-graphs] [ 2 of 29] Compiling Algebra.Graph.AdjacencyIntMap ( src/Algebra/Graph/AdjacencyIntMap.hs, nothing ) [HIE file is missing]
673.03 s
[algebraic-graphs] [ 3 of 29] Compiling Algebra.Graph.AdjacencyIntMap.Algorithm ( src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs, nothing ) [HIE file is missing]
673.12 s
[algebraic-graphs] [ 4 of 29] Compiling Algebra.Graph.Internal ( src/Algebra/Graph/Internal.hs, nothing ) [HIE file is missing]
673.27 s
[algebraic-graphs] [ 5 of 29] Compiling Algebra.Graph ( src/Algebra/Graph.hs, nothing ) [HIE file is missing]
673.54 s
[algebraic-graphs] [ 6 of 29] Compiling Algebra.Graph.HigherKinded.Class ( src/Algebra/Graph/HigherKinded/Class.hs, nothing ) [HIE file is missing]
673.59 s
[algebraic-graphs] [ 7 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap ( src/Algebra/Graph/Bipartite/AdjacencyMap.hs, nothing ) [HIE file is missing]
673.78 s
[algebraic-graphs] [ 8 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap.Algorithm ( src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs, nothing ) [HIE file is missing]
674.01 s
[algebraic-graphs] [ 9 of 29] Compiling Algebra.Graph.Label ( src/Algebra/Graph/Label.hs, nothing ) [HIE file is missing]
674.25 s
[algebraic-graphs] [10 of 29] Compiling Algebra.Graph.NonEmpty.AdjacencyMap ( src/Algebra/Graph/NonEmpty/AdjacencyMap.hs, nothing ) [HIE file is missing]
674.39 s
[algebraic-graphs] [11 of 29] Compiling Algebra.Graph.AdjacencyMap.Algorithm ( src/Algebra/Graph/AdjacencyMap/Algorithm.hs, nothing ) [HIE file is missing]
674.49 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:384:43: warning : [ GHC-63394 ] [ -Wx-partial ]
674.49 s
[algebraic-graphs] In the use of ‘head’
674.49 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
674.49 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"."
674.49 s
[algebraic-graphs] |
674.49 s
[algebraic-graphs] 384 | exit v = do newComponent <- (v==).snd.head <$> gets boundaryStack
674.49 s
[algebraic-graphs] | ^^^^
674.49 s
[algebraic-graphs]
674.50 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:391:21: warning : [ GHC-63394 ] [ -Wx-partial ]
674.50 s
[algebraic-graphs] In the use of ‘tail’
674.50 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
674.50 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"."
674.50 s
[algebraic-graphs] |
674.50 s
[algebraic-graphs] 391 | pth' = tail v_pth' -- Here we know that v_pth' starts with v
674.50 s
[algebraic-graphs] | ^^^^
674.50 s
[algebraic-graphs]
674.50 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:395:26: warning : [ GHC-63394 ] [ -Wx-partial ]
674.50 s
[algebraic-graphs] In the use of ‘head’
674.50 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
674.50 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"."
674.50 s
[algebraic-graphs] |
674.50 s
[algebraic-graphs] 395 | p_v = fst $ head bnd
674.50 s
[algebraic-graphs] | ^^^^
674.50 s
[algebraic-graphs]
674.50 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:397:21: warning : [ GHC-63394 ] [ -Wx-partial ]
674.50 s
[algebraic-graphs] In the use of ‘tail’
674.50 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
674.50 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"."
674.50 s
[algebraic-graphs] |
674.50 s
[algebraic-graphs] 397 | bnd' = tail bnd
674.50 s
[algebraic-graphs] | ^^^^
674.50 s
[algebraic-graphs]
674.51 s
[algebraic-graphs] [12 of 29] Compiling Algebra.Graph.Acyclic.AdjacencyMap ( src/Algebra/Graph/Acyclic/AdjacencyMap.hs, nothing ) [HIE file is missing]
674.56 s
[algebraic-graphs] [13 of 29] Compiling Algebra.Graph.ToGraph ( src/Algebra/Graph/ToGraph.hs, nothing ) [HIE file is missing]
674.75 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
674.75 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
674.75 s
[algebraic-graphs] will become an error in a future GHC release.
674.75 s
[algebraic-graphs] Suggested fix:
674.75 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
674.75 s
[algebraic-graphs] |
674.75 s
[algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
674.75 s
[algebraic-graphs] | ^
674.75 s
[algebraic-graphs]
674.75 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
674.75 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
674.75 s
[algebraic-graphs] will become an error in a future GHC release.
674.75 s
[algebraic-graphs] Suggested fix:
674.75 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
674.75 s
[algebraic-graphs] |
674.75 s
[algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
674.75 s
[algebraic-graphs] | ^
674.75 s
[algebraic-graphs]
674.76 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
674.76 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
674.76 s
[algebraic-graphs] will become an error in a future GHC release.
674.76 s
[algebraic-graphs] Suggested fix:
674.76 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
674.76 s
[algebraic-graphs] |
674.76 s
[algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
674.76 s
[algebraic-graphs] | ^
674.76 s
[algebraic-graphs]
674.76 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
674.76 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
674.76 s
[algebraic-graphs] will become an error in a future GHC release.
674.76 s
[algebraic-graphs] Suggested fix:
674.76 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
674.76 s
[algebraic-graphs] |
674.76 s
[algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
674.76 s
[algebraic-graphs] | ^
674.76 s
[algebraic-graphs]
674.76 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
674.76 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
674.76 s
[algebraic-graphs] will become an error in a future GHC release.
674.76 s
[algebraic-graphs] Suggested fix:
674.76 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
674.76 s
[algebraic-graphs] |
674.76 s
[algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
674.76 s
[algebraic-graphs] | ^
674.76 s
[algebraic-graphs]
674.76 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
674.76 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
674.76 s
[algebraic-graphs] will become an error in a future GHC release.
674.76 s
[algebraic-graphs] Suggested fix:
674.76 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
674.76 s
[algebraic-graphs] |
674.76 s
[algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
674.76 s
[algebraic-graphs] | ^
674.76 s
[algebraic-graphs]
674.76 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
674.76 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
674.76 s
[algebraic-graphs] will become an error in a future GHC release.
674.76 s
[algebraic-graphs] Suggested fix:
674.76 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
674.76 s
[algebraic-graphs] |
674.76 s
[algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
674.77 s
[algebraic-graphs] | ^
674.77 s
[algebraic-graphs]
674.77 s
[algebraic-graphs] [14 of 29] Compiling Algebra.Graph.Relation ( src/Algebra/Graph/Relation.hs, nothing ) [HIE file is missing]
674.93 s
[algebraic-graphs] [15 of 29] Compiling Algebra.Graph.Relation.Symmetric ( src/Algebra/Graph/Relation/Symmetric.hs, nothing ) [HIE file is missing]
675.05 s
[algebraic-graphs] [16 of 29] Compiling Algebra.Graph.NonEmpty ( src/Algebra/Graph/NonEmpty.hs, nothing ) [HIE file is missing]
675.35 s
[algebraic-graphs] [17 of 29] Compiling Algebra.Graph.Labelled.AdjacencyMap ( src/Algebra/Graph/Labelled/AdjacencyMap.hs, nothing ) [HIE file is missing]
675.54 s
[algebraic-graphs] [18 of 29] Compiling Algebra.Graph.Labelled ( src/Algebra/Graph/Labelled.hs, nothing ) [HIE file is missing]
675.77 s
[algebraic-graphs] [19 of 29] Compiling Algebra.Graph.Labelled.Example.Network ( src/Algebra/Graph/Labelled/Example/Network.hs, nothing ) [HIE file is missing]
675.79 s
[algebraic-graphs] [20 of 29] Compiling Algebra.Graph.Labelled.Example.Automaton ( src/Algebra/Graph/Labelled/Example/Automaton.hs, nothing ) [HIE file is missing]
675.81 s
[algebraic-graphs] [21 of 29] Compiling Algebra.Graph.Export ( src/Algebra/Graph/Export.hs, nothing ) [HIE file is missing]
675.85 s
[algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
675.85 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
675.85 s
[algebraic-graphs] will become an error in a future GHC release.
675.85 s
[algebraic-graphs] Suggested fix:
675.85 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
675.85 s
[algebraic-graphs] |
675.85 s
[algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
675.85 s
[algebraic-graphs] | ^
675.85 s
[algebraic-graphs]
675.85 s
[algebraic-graphs] [22 of 29] Compiling Algebra.Graph.Export.Dot ( src/Algebra/Graph/Export/Dot.hs, nothing ) [HIE file is missing]
675.88 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
675.88 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
675.88 s
[algebraic-graphs] will become an error in a future GHC release.
675.88 s
[algebraic-graphs] Suggested fix:
675.88 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
675.88 s
[algebraic-graphs] |
675.88 s
[algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
675.88 s
[algebraic-graphs] | ^
675.88 s
[algebraic-graphs]
675.88 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
675.88 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
675.88 s
[algebraic-graphs] will become an error in a future GHC release.
675.88 s
[algebraic-graphs] Suggested fix:
675.88 s
[algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
675.88 s
[algebraic-graphs] |
675.88 s
[algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
675.88 s
[algebraic-graphs] | ^
675.88 s
[algebraic-graphs]
675.89 s
[algebraic-graphs] [23 of 29] Compiling Algebra.Graph.Undirected ( src/Algebra/Graph/Undirected.hs, nothing ) [HIE file is missing]
676.01 s
[algebraic-graphs] [24 of 29] Compiling Algebra.Graph.Class ( src/Algebra/Graph/Class.hs, nothing ) [HIE file is missing]
676.18 s
[algebraic-graphs] [25 of 29] Compiling Algebra.Graph.Relation.Transitive ( src/Algebra/Graph/Relation/Transitive.hs, nothing ) [HIE file is missing]
676.20 s
[algebraic-graphs] [26 of 29] Compiling Algebra.Graph.Relation.Reflexive ( src/Algebra/Graph/Relation/Reflexive.hs, nothing ) [HIE file is missing]
676.22 s
[algebraic-graphs] [27 of 29] Compiling Algebra.Graph.Relation.Preorder ( src/Algebra/Graph/Relation/Preorder.hs, nothing ) [HIE file is missing]
676.25 s
[algebraic-graphs] [28 of 29] Compiling Algebra.Graph.Example.Todo ( src/Algebra/Graph/Example/Todo.hs, nothing ) [HIE file is missing]
676.28 s
[algebraic-graphs] [29 of 29] Compiling Data.Graph.Typed ( src/Data/Graph/Typed.hs, nothing ) [HIE file is missing]
676.31 s
[algebraic-graphs] Haddock coverage:
676.32 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.32 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
676.32 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.32 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.32 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.32 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
676.44 s
[algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
676.45 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.45 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
676.45 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.45 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.45 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.45 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
676.46 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
676.47 s
[algebraic-graphs] Warning: 'nub' is out of scope.
676.47 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.48 s
[algebraic-graphs] Warning: 'sort' is out of scope.
676.48 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.48 s
[algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
676.48 s
[algebraic-graphs] Missing documentation for:
676.48 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
676.48 s
[algebraic-graphs] Warning: 'List' is ambiguous. It is defined
676.48 s
[algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:18
676.48 s
[algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:1
676.48 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.48 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.48 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Internal.hs:50:1
676.48 s
[algebraic-graphs] Warning: 'IsList' is out of scope.
676.48 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.48 s
[algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
676.49 s
[algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
676.49 s
[algebraic-graphs] * at src/Algebra/Graph.hs:1400:18
676.49 s
[algebraic-graphs] * at src/Algebra/Graph.hs:1400:1
676.49 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.49 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.49 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:1400:1
676.49 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.49 s
[algebraic-graphs] * at src/Algebra/Graph.hs:316:1
676.49 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.49 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.49 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.49 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:316:1
676.63 s
[algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
676.63 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
676.63 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.63 s
[algebraic-graphs] Warning: 'vertexCount' is out of scope.
676.63 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.63 s
[algebraic-graphs] Warning: 'edgeCount' is out of scope.
676.63 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.63 s
[algebraic-graphs] Warning: 'edgeList' is out of scope.
676.63 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.64 s
[algebraic-graphs] Warning: 'box' is out of scope.
676.64 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.64 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
676.64 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.64 s
[algebraic-graphs] Warning: 'hasVertex' is out of scope.
676.64 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.64 s
[algebraic-graphs] Warning: 'vertexSet' is out of scope.
676.64 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.64 s
[algebraic-graphs] Warning: 'mplus' is out of scope.
676.64 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.64 s
[algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
676.65 s
[algebraic-graphs] Warning: 'swap' is ambiguous. It is defined
676.65 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
676.65 s
[algebraic-graphs] * in ‘GHC.Internal.Data.Tuple’
676.65 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.65 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.65 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
676.65 s
[algebraic-graphs] Warning: 'nub' is out of scope.
676.65 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.65 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.65 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
676.65 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.65 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.65 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.65 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
676.67 s
[algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
676.67 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.67 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
676.67 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.67 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.67 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.67 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
676.67 s
[algebraic-graphs] Warning: 'isRight' is out of scope.
676.67 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.67 s
[algebraic-graphs] Warning: 'Matching' is ambiguous. It is defined
676.67 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:21
676.67 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
676.67 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.67 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.67 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
676.68 s
[algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
676.68 s
[algebraic-graphs] Warning: 'Optimum' is ambiguous. It is defined
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:20
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:1
676.68 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.68 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.68 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:442:1
676.68 s
[algebraic-graphs] Warning: 'Minimum' is ambiguous. It is defined
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:21
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:1
676.68 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.68 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.68 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:314:1
676.68 s
[algebraic-graphs] Warning: 'Distance' is ambiguous. It is defined
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:22
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:1
676.68 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.68 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.68 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:241:1
676.68 s
[algebraic-graphs] Warning: 'Capacity' is ambiguous. It is defined
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:22
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:1
676.68 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.68 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.68 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:176:1
676.68 s
[algebraic-graphs] Warning: 'Count' is ambiguous. It is defined
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:19
676.68 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:1
676.68 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.68 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.68 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:209:1
676.68 s
[algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
676.69 s
[algebraic-graphs] Warning: 'empty' is out of scope.
676.69 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.94 s
[algebraic-graphs] Warning: 'edges' is out of scope.
676.94 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.94 s
[algebraic-graphs] Warning: 'stars' is out of scope.
676.94 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.94 s
[algebraic-graphs] Warning: 'AdjacencyMap' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:157:1
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
676.94 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
676.94 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.94 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
676.94 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.94 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
676.94 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.94 s
[algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
676.94 s
[algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
676.94 s
[algebraic-graphs] Warning: 'edge' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:252:1
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
676.94 s
[algebraic-graphs] Warning: 'nub' is out of scope.
676.94 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.94 s
[algebraic-graphs] Warning: 'sort' is out of scope.
676.94 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.94 s
[algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
676.94 s
[algebraic-graphs] Missing documentation for:
676.94 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
676.94 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
676.94 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
676.94 s
[algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:143:1
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:239:1
676.94 s
[algebraic-graphs] Warning: 'vertices' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:157:1
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:309:1
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:309:1
676.94 s
[algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:246:1
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:417:1
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:417:1
676.94 s
[algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:258:1
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:429:1
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:429:1
676.94 s
[algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
676.94 s
[algebraic-graphs] Warning: 'foldg' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph.hs:482:1
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/ToGraph.hs:98:5
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/ToGraph.hs:98:5
676.94 s
[algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
676.94 s
[algebraic-graphs] Warning: 'Relation' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:19
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:1
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.94 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:157:1
676.94 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.94 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:243:1
676.94 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.94 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.94 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:243:1
676.95 s
[algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
676.95 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.95 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
676.95 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:188:1
676.95 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:188:1
676.95 s
[algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:423:1
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:372:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:372:1
676.95 s
[algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:435:1
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:384:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:384:1
676.95 s
[algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
676.95 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
676.95 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.95 s
[algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
676.95 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
676.95 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
676.95 s
[algebraic-graphs] Warning: 'hasEdge' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:403:1
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
676.95 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
676.95 s
[algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:20
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:675:1
676.95 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:191:1
676.95 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:191:1
676.95 s
[algebraic-graphs] Warning: 'Focus' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:18
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:642:1
676.95 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
676.95 s
[algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
676.95 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
676.95 s
[algebraic-graphs] Warning: 'Doc' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:17
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export.hs:57:1
676.95 s
[algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
676.95 s
[algebraic-graphs] Warning: 'Style' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:18
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export/Dot.hs:49:1
676.95 s
[algebraic-graphs] Warning: 'Graph' is out of scope.
676.95 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.95 s
[algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
676.95 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Undirected.hs:253:1
676.95 s
[algebraic-graphs] * in ‘Data.Set.Internal’
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Undirected.hs:253:1
676.95 s
[algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
676.95 s
[algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
676.95 s
[algebraic-graphs] Warning: 'TransitiveRelation' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:32
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Transitive.hs:39:1
676.95 s
[algebraic-graphs] Warning: 'Transitive' is out of scope.
676.95 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.95 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
676.95 s
[algebraic-graphs] Warning: 'ReflexiveRelation' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:31
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Reflexive.hs:34:1
676.95 s
[algebraic-graphs] Warning: 'Reflexive' is out of scope.
676.95 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.95 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
676.95 s
[algebraic-graphs] Warning: 'PreorderRelation' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:30
676.95 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Preorder.hs:44:1
676.95 s
[algebraic-graphs] Warning: 'Preorder' is out of scope.
676.95 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.95 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
676.95 s
[algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
676.95 s
[algebraic-graphs] Missing documentation for:
676.95 s
[algebraic-graphs] Module header
676.95 s
[algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
676.95 s
[algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:42)
676.95 s
[algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:23)
676.95 s
[algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:27)
676.95 s
[algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:35)
676.95 s
[algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:39)
676.95 s
[algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:31)
676.95 s
[algebraic-graphs] Warning: 'GraphKL' is ambiguous. It is defined
676.95 s
[algebraic-graphs] * at src/Data/Graph/Typed.hs:40:18
676.95 s
[algebraic-graphs] * at src/Data/Graph/Typed.hs:40:1
676.95 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
676.95 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
676.95 s
[algebraic-graphs] Defaulting to the one defined at src/Data/Graph/Typed.hs:40:1
676.95 s
[algebraic-graphs] Warning: 'array' is out of scope.
676.95 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
676.95 s
[algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
676.95 s
[algebraic-graphs] Missing documentation for:
676.95 s
[algebraic-graphs] scc (src/Data/Graph/Typed.hs:192)
677.23 s
[algebraic-graphs] Warning: Algebra.Graph.AdjacencyMap: could not find link destinations for:
677.23 s
[algebraic-graphs] - Algebra.Graph.AdjacencyMap.Rep_AdjacencyMap
677.23 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap0
677.23 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap0
677.25 s
[algebraic-graphs] Warning: Algebra.Graph.AdjacencyIntMap: could not find link destinations for:
677.25 s
[algebraic-graphs] - Algebra.Graph.AdjacencyIntMap.Rep_AdjacencyIntMap
677.25 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyIntMap
677.25 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyIntMap
677.26 s
[algebraic-graphs] Warning: Algebra.Graph.Internal: could not find link destinations for:
677.26 s
[algebraic-graphs] - Algebra.Graph.Internal.D:R:ItemList
677.28 s
[algebraic-graphs] Warning: Algebra.Graph: could not find link destinations for:
677.28 s
[algebraic-graphs] - Algebra.Graph.Rep_Graph
677.28 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexGraph
677.28 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph1
677.30 s
[algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap: could not find link destinations for:
677.30 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_AdjacencyMap
677.30 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_List
677.30 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.D:R:ItemList
677.31 s
[algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap.Algorithm: could not find link destinations for:
677.31 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Algorithm.Rep_Matching
677.31 s
[algebraic-graphs] Warning: Algebra.Graph.Label: could not find link destinations for:
677.31 s
[algebraic-graphs] - Algebra.Graph.Label.D:R:ItemLabel
677.31 s
[algebraic-graphs] - Algebra.Graph.Label.D:R:ItemMinimum
677.32 s
[algebraic-graphs] Warning: Algebra.Graph.NonEmpty.AdjacencyMap: could not find link destinations for:
677.32 s
[algebraic-graphs] - Algebra.Graph.NonEmpty.AdjacencyMap.Rep_AdjacencyMap
677.32 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap
677.34 s
[algebraic-graphs] Warning: Algebra.Graph.ToGraph: could not find link destinations for:
677.34 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyIntMap
677.34 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap
677.34 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap0
677.34 s
[algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexGraph
677.34 s
[algebraic-graphs] - Algebra.Graph.Relation.D:R:ToVertexRelation
677.34 s
[algebraic-graphs] - Algebra.Graph.Relation.Symmetric.D:R:ToVertexRelation
677.34 s
[algebraic-graphs] - Algebra.Graph.NonEmpty.D:R:ToVertexGraph
677.34 s
[algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.D:R:ToVertexAdjacencyMap
677.34 s
[algebraic-graphs] - Algebra.Graph.Labelled.D:R:ToVertexGraph
677.36 s
[algebraic-graphs] Warning: Algebra.Graph.Relation: could not find link destinations for:
677.36 s
[algebraic-graphs] - Algebra.Graph.Relation.D:R:ToVertexRelation
677.36 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation0
677.37 s
[algebraic-graphs] Warning: Algebra.Graph.Relation.Symmetric: could not find link destinations for:
677.37 s
[algebraic-graphs] - Algebra.Graph.Relation.Symmetric.D:R:ToVertexRelation
677.37 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation
677.39 s
[algebraic-graphs] Warning: Algebra.Graph.NonEmpty: could not find link destinations for:
677.39 s
[algebraic-graphs] - Algebra.Graph.NonEmpty.D:R:ToVertexGraph
677.40 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled.AdjacencyMap: could not find link destinations for:
677.40 s
[algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.Rep_AdjacencyMap
677.40 s
[algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.D:R:ToVertexAdjacencyMap
677.40 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap
677.41 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled: could not find link destinations for:
677.41 s
[algebraic-graphs] - Algebra.Graph.Labelled.Rep_Graph
677.41 s
[algebraic-graphs] - Algebra.Graph.Labelled.D:R:ToVertexGraph
677.41 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph
677.44 s
[algebraic-graphs] Warning: Algebra.Graph.Undirected: could not find link destinations for:
677.44 s
[algebraic-graphs] - Algebra.Graph.Undirected.Rep_Graph
677.44 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph0
677.45 s
[algebraic-graphs] Warning: Algebra.Graph.Class: could not find link destinations for:
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyIntMap
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap0
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexFUN
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph0
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph1
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexMaybe
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation0
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexTuple2
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexTuple3
677.45 s
[algebraic-graphs] - Algebra.Graph.Class.D:R:VertexUnit
677.45 s
[algebraic-graphs] - Algebra.Graph.Relation.Transitive.D:R:VertexTransitiveRelation
677.45 s
[algebraic-graphs] - Algebra.Graph.Relation.Reflexive.D:R:VertexReflexiveRelation
677.45 s
[algebraic-graphs] - Algebra.Graph.Relation.Preorder.D:R:VertexPreorderRelation
677.45 s
[algebraic-graphs] - Algebra.Graph.Example.Todo.D:R:VertexTodo
677.45 s
[algebraic-graphs] Warning: Algebra.Graph.Relation.Transitive: could not find link destinations for:
677.45 s
[algebraic-graphs] - Algebra.Graph.Relation.Transitive.D:R:VertexTransitiveRelation
677.45 s
[algebraic-graphs] Warning: Algebra.Graph.Relation.Reflexive: could not find link destinations for:
677.45 s
[algebraic-graphs] - Algebra.Graph.Relation.Reflexive.D:R:VertexReflexiveRelation
677.45 s
[algebraic-graphs] Warning: Algebra.Graph.Relation.Preorder: could not find link destinations for:
677.45 s
[algebraic-graphs] - Algebra.Graph.Relation.Preorder.D:R:VertexPreorderRelation
677.45 s
[algebraic-graphs] Warning: Algebra.Graph.Example.Todo: could not find link destinations for:
677.45 s
[algebraic-graphs] - Algebra.Graph.Example.Todo.D:R:VertexTodo
685.13 s
[algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs,
685.17 s
[algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
685.82 s
[algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7...
685.94 s
[algebraic-graphs] Phase: installPhase
686.04 s
[algebraic-graphs] Installing library in /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7/lib/ghc-9.12.1/lib/x86_64-linux-ghc-9.12.1-f739/algebraic-graphs-0.7-DzgFQFDnEHDFycYz4NqJEI
686.87 s
[algebraic-graphs] Phase: fixupPhase
686.89 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7
686.92 s
[algebraic-graphs] shrinking /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7/lib/ghc-9.12.1/lib/x86_64-linux-ghc-9.12.1-f739/libHSalgebraic-graphs-0.7-DzgFQFDnEHDFycYz4NqJEI-ghc9.12.1.so
686.92 s
[algebraic-graphs] checking for references to /build/ in /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7...
686.96 s
[algebraic-graphs] patching script interpreter paths in /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7
686.97 s
[algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7/lib
687.29 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/zwi1ml033xyrj6h60hxfvgwcsfkcz4sa-algebraic-graphs-0.7-doc
687.31 s
[algebraic-graphs] checking for references to /build/ in /nix/store/zwi1ml033xyrj6h60hxfvgwcsfkcz4sa-algebraic-graphs-0.7-doc...
687.33 s
[algebraic-graphs] patching script interpreter paths in /nix/store/zwi1ml033xyrj6h60hxfvgwcsfkcz4sa-algebraic-graphs-0.7-doc
687.52 s
[algebraic-graphs:post-build] Uploading to cachix cache "sellout": /nix/store/zwi1ml033xyrj6h60hxfvgwcsfkcz4sa-algebraic-graphs-0.7-doc /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7
688.06 s
[algebraic-graphs:post-build] Pushing 2 paths (66 are already present) using zstd to cache sellout ⏳
688.06 s
[algebraic-graphs:post-build]
688.43 s
[algebraic-graphs:post-build] Pushing /nix/store/zwi1ml033xyrj6h60hxfvgwcsfkcz4sa-algebraic-graphs-0.7-doc (10.41 MiB)
688.50 s
[algebraic-graphs:post-build] Pushing /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7 (25.82 MiB)
689.78 s
[algebraic-graphs:post-build]
689.78 s
[algebraic-graphs:post-build] All done.
689.81 s
[algebraic-graphs:post-build] Uploading to the NixCI cache: /nix/store/zwi1ml033xyrj6h60hxfvgwcsfkcz4sa-algebraic-graphs-0.7-doc /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7
689.87 s
[algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
690.11 s
[algebraic-graphs:post-build] copying 2 paths...
690.11 s
[algebraic-graphs:post-build] copying path '/nix/store/zwi1ml033xyrj6h60hxfvgwcsfkcz4sa-algebraic-graphs-0.7-doc' to 'https://cache.nix-ci.com'...
691.86 s
[algebraic-graphs:post-build] copying path '/nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
700.11 s
[algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
700.38 s
[algebraic-graphs:post-build] copying 1 paths...
700.42 s
[algebraic-graphs:post-build] copying path '/nix/store/kvcg0i6hscdsp3k91crm7j0b125q987x-algebraic-graphs-0.7.drv' to 'https://cache.nix-ci.com'...
700.63 s
Progress: 9 of 14 built, 145 of 145 downloaded from cache
700.69 s
Building /nix/store/6lsm2jsyhyd8z7j3a6i1zibq5mjbysbx-algebraic-graph-duoids-0.0.1.0.drv
700.85 s
[algebraic-graph-duoids] Phase: setupCompilerEnvironmentPhase
700.86 s
[algebraic-graph-duoids] Build with /nix/store/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1.
701.11 s
[algebraic-graph-duoids] Phase: unpackPhase
701.12 s
[algebraic-graph-duoids] unpacking source archive /nix/store/2pi6cc3ispq29svgnm6ji6gvgnwcqkka-kaqf6a6zn2kfz70w33vsn1jsv1z5h2sp-source/./algebraic-graphs
701.13 s
[algebraic-graph-duoids] source root is algebraic-graphs
701.13 s
[algebraic-graph-duoids] Phase: patchPhase
701.14 s
[algebraic-graph-duoids] Phase: compileBuildDriverPhase
701.15 s
[algebraic-graph-duoids] setupCompileFlags: -package-db=/build/tmp.ldcV4kdzOo/setup-package.conf.d -threaded
701.23 s
[algebraic-graph-duoids] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.ldcV4kdzOo/Main.o )
701.30 s
[algebraic-graph-duoids] [2 of 2] Linking Setup
702.75 s
[algebraic-graph-duoids] Phase: updateAutotoolsGnuConfigScriptsPhase
702.76 s
[algebraic-graph-duoids] Phase: configurePhase
702.77 s
[algebraic-graph-duoids] configureFlags: --verbose --prefix=/nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0 --with-gcc=gcc --package-db=/build/tmp.ldcV4kdzOo/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/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1/lib
702.78 s
[algebraic-graph-duoids] Using Parsec parser
702.78 s
[algebraic-graph-duoids] Configuring algebraic-graph-duoids-0.0.1.0...
702.81 s
[algebraic-graph-duoids] Warning: Unknown/unsupported 'ghc' version detected (Cabal 3.14.1.0 supports
702.81 s
[algebraic-graph-duoids] 'ghc' version < 9.12):
702.81 s
[algebraic-graph-duoids] /nix/store/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1/bin/ghc is version
702.81 s
[algebraic-graph-duoids] 9.12.1
703.11 s
[algebraic-graph-duoids] Flags chosen: noisy-deprecations=True, verify-no-recursion=False
703.37 s
[algebraic-graph-duoids] Dependency algebraic-graphs >=0.6.1 && <0.8: using algebraic-graphs-0.7
703.37 s
[algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
703.37 s
[algebraic-graph-duoids] >=4.21.0 && <4.22: using base-4.21.0.0
703.37 s
[algebraic-graph-duoids] Dependency duoids >=0.0.1 && <0.1: using duoids-0.0.1.0
703.37 s
[algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
703.37 s
[algebraic-graph-duoids] Dependency algebraic-graphs >=0.6.1 && <0.8: using algebraic-graphs-0.7
703.37 s
[algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
703.37 s
[algebraic-graph-duoids] >=4.21.0 && <4.22: using base-4.21.0.0
703.37 s
[algebraic-graph-duoids] Dependency duoids-hedgehog >=0.0.1 && <0.1: using duoids-hedgehog-0.0.1.0
703.37 s
[algebraic-graph-duoids] Dependency hedgehog >=1.2 && <1.3 || >=1.4 && <1.6 || >=1.7 && <1.8: using
703.37 s
[algebraic-graph-duoids] hedgehog-1.5
703.37 s
[algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
703.37 s
[algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
703.37 s
[algebraic-graph-duoids] >=4.21.0 && <4.22: using base-4.21.0.0
703.37 s
[algebraic-graph-duoids] Dependency doctest >=0.21.1 && <0.22 || >=0.22.6 && <0.23 || >=0.24.0 &&
703.37 s
[algebraic-graph-duoids] <0.25: using doctest-0.24.0
703.37 s
[algebraic-graph-duoids] Source component graph:
703.37 s
[algebraic-graph-duoids] component lib
703.37 s
[algebraic-graph-duoids] component test:doctests dependency lib
703.37 s
[algebraic-graph-duoids] component test:laws dependency lib
703.37 s
[algebraic-graph-duoids] Configured component graph:
703.37 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.37 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-DzgFQFDnEHDFycYz4NqJEI
703.37 s
[algebraic-graph-duoids] include base-4.21.0.0-f068
703.37 s
[algebraic-graph-duoids] include duoids-0.0.1.0-6a5M5g8JcSoAjAKNcWOIrt
703.37 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-BsCVSspHDmhFjQRvObHyjh-doctests
703.37 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.38 s
[algebraic-graph-duoids] include base-4.21.0.0-f068
703.38 s
[algebraic-graph-duoids] include doctest-0.24.0-GGpROyg9TSm1IGZyewuA6E
703.38 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-BLs4stF7Q617YqzZpZPtBo-laws
703.38 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.38 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-DzgFQFDnEHDFycYz4NqJEI
703.38 s
[algebraic-graph-duoids] include base-4.21.0.0-f068
703.38 s
[algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-E50BmRANDjIG6cOasHr5pf
703.38 s
[algebraic-graph-duoids] include hedgehog-1.5-LcsFpG0Er7ZGRzxTgWdRj1
703.38 s
[algebraic-graph-duoids] Linked component graph:
703.38 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.38 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-DzgFQFDnEHDFycYz4NqJEI
703.38 s
[algebraic-graph-duoids] include base-4.21.0.0-f068
703.38 s
[algebraic-graph-duoids] include duoids-0.0.1.0-6a5M5g8JcSoAjAKNcWOIrt
703.38 s
[algebraic-graph-duoids] Algebra.Graph.Duoid=algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW:Algebra.Graph.Duoid,Algebra.Graph.Duoid.Orphans=algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW:Algebra.Graph.Duoid.Orphans
703.38 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-BsCVSspHDmhFjQRvObHyjh-doctests
703.38 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.38 s
[algebraic-graph-duoids] include base-4.21.0.0-f068
703.38 s
[algebraic-graph-duoids] include doctest-0.24.0-GGpROyg9TSm1IGZyewuA6E
703.38 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-BLs4stF7Q617YqzZpZPtBo-laws
703.38 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.38 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-DzgFQFDnEHDFycYz4NqJEI
703.38 s
[algebraic-graph-duoids] include base-4.21.0.0-f068
703.38 s
[algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-E50BmRANDjIG6cOasHr5pf
703.38 s
[algebraic-graph-duoids] include hedgehog-1.5-LcsFpG0Er7ZGRzxTgWdRj1
703.38 s
[algebraic-graph-duoids] Ready component graph:
703.38 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.38 s
[algebraic-graph-duoids] depends algebraic-graphs-0.7-DzgFQFDnEHDFycYz4NqJEI
703.38 s
[algebraic-graph-duoids] depends base-4.21.0.0-f068
703.38 s
[algebraic-graph-duoids] depends duoids-0.0.1.0-6a5M5g8JcSoAjAKNcWOIrt
703.38 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-BLs4stF7Q617YqzZpZPtBo-laws
703.38 s
[algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.38 s
[algebraic-graph-duoids] depends algebraic-graphs-0.7-DzgFQFDnEHDFycYz4NqJEI
703.38 s
[algebraic-graph-duoids] depends base-4.21.0.0-f068
703.38 s
[algebraic-graph-duoids] depends duoids-hedgehog-0.0.1.0-E50BmRANDjIG6cOasHr5pf
703.38 s
[algebraic-graph-duoids] depends hedgehog-1.5-LcsFpG0Er7ZGRzxTgWdRj1
703.38 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-BsCVSspHDmhFjQRvObHyjh-doctests
703.38 s
[algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.38 s
[algebraic-graph-duoids] depends base-4.21.0.0-f068
703.38 s
[algebraic-graph-duoids] depends doctest-0.24.0-GGpROyg9TSm1IGZyewuA6E
703.38 s
[algebraic-graph-duoids] Using Cabal-3.14.1.0 compiled by ghc-9.12
703.38 s
[algebraic-graph-duoids] Using compiler: ghc-9.12.1
703.38 s
[algebraic-graph-duoids] Using install prefix:
703.38 s
[algebraic-graph-duoids] /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0
703.38 s
[algebraic-graph-duoids] Executables installed in:
703.38 s
[algebraic-graph-duoids] /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/bin
703.38 s
[algebraic-graph-duoids] Libraries installed in:
703.39 s
[algebraic-graph-duoids] /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.12.1/lib/x86_64-linux-ghc-9.12.1-f739/algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
703.39 s
[algebraic-graph-duoids] Dynamic Libraries installed in:
703.39 s
[algebraic-graph-duoids] /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.12.1/lib/x86_64-linux-ghc-9.12.1-f739
703.39 s
[algebraic-graph-duoids] Private executables installed in:
703.39 s
[algebraic-graph-duoids] /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/libexec/x86_64-linux-ghc-9.12.1-f739/algebraic-graph-duoids-0.0.1.0
703.39 s
[algebraic-graph-duoids] Data files installed in:
703.39 s
[algebraic-graph-duoids] /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/share/x86_64-linux-ghc-9.12.1-f739/algebraic-graph-duoids-0.0.1.0
703.39 s
[algebraic-graph-duoids] Documentation installed in:
703.39 s
[algebraic-graph-duoids] /nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0
703.39 s
[algebraic-graph-duoids] Configuration files installed in:
703.39 s
[algebraic-graph-duoids] /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/etc
703.39 s
[algebraic-graph-duoids] No alex found
703.39 s
[algebraic-graph-duoids] Using ar found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
703.39 s
[algebraic-graph-duoids] No c2hs found
703.39 s
[algebraic-graph-duoids] No cpphs found
703.39 s
[algebraic-graph-duoids] Using doctest version 0.24.0 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/x1z9pyd8hb27z4bhy7lsj2npgsq740xd-doctest-0.24.0/bin/doctest
703.39 s
[algebraic-graph-duoids] Using gcc version 14.3.0 given by user at:
703.39 s
[algebraic-graph-duoids] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
703.39 s
[algebraic-graph-duoids] Using ghc version 9.12.1 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1/bin/ghc
703.39 s
[algebraic-graph-duoids] Using ghc-pkg version 9.12.1 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1/bin/ghc-pkg-9.12.1
703.39 s
[algebraic-graph-duoids] No ghcjs found
703.39 s
[algebraic-graph-duoids] No ghcjs-pkg found
703.39 s
[algebraic-graph-duoids] No greencard found
703.39 s
[algebraic-graph-duoids] Using haddock version 2.30.0 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1/bin/haddock-ghc-9.12.1
703.39 s
[algebraic-graph-duoids] No happy found
703.39 s
[algebraic-graph-duoids] No haskell-suite found
703.39 s
[algebraic-graph-duoids] No haskell-suite-pkg found
703.39 s
[algebraic-graph-duoids] No hmake found
703.39 s
[algebraic-graph-duoids] Using hpc version 0.69 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1/bin/hpc-ghc-9.12.1
703.39 s
[algebraic-graph-duoids] Using hsc2hs version 0.68.10 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1/bin/hsc2hs-ghc-9.12.1
703.39 s
[algebraic-graph-duoids] Using hscolour version 1.25 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/q6qz2x3a08capyv98w52zizgxcnmv4hb-hscolour-1.25/bin/HsColour
703.39 s
[algebraic-graph-duoids] No jhc found
703.39 s
[algebraic-graph-duoids] Using ld found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/ld
703.39 s
[algebraic-graph-duoids] No pkg-config found
703.39 s
[algebraic-graph-duoids] Using runghc version 9.12.1 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/c0syprk795450qh1ladngkx87k7x00af-ghc-9.12.1/bin/runghc-9.12.1
703.39 s
[algebraic-graph-duoids] Using strip version 2.44 found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
703.39 s
[algebraic-graph-duoids] Using tar found on system at:
703.39 s
[algebraic-graph-duoids] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
703.39 s
[algebraic-graph-duoids] No uhc found
703.53 s
[algebraic-graph-duoids] Phase: buildPhase
703.60 s
[algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
703.61 s
[algebraic-graph-duoids] Building library for algebraic-graph-duoids-0.0.1.0...
703.67 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 )
703.73 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 )
704.63 s
[algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, dist/build/Algebra/Graph/Duoid.p_o )
704.77 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 )
706.72 s
[algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
706.72 s
[algebraic-graph-duoids] Building test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
706.83 s
[algebraic-graph-duoids] [1 of 1] Compiling Main ( tests/laws.hs, dist/build/laws/laws-tmp/Main.o )
707.17 s
[algebraic-graph-duoids] [2 of 2] Linking dist/build/laws/laws
708.13 s
[algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
708.13 s
[algebraic-graph-duoids] Building test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
708.21 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 )
708.40 s
[algebraic-graph-duoids] [2 of 2] Compiling Main ( tests/doctests.hs, dist/build/doctests/doctests-tmp/Main.o )
708.91 s
[algebraic-graph-duoids] [3 of 3] Linking dist/build/doctests/doctests
713.90 s
[algebraic-graph-duoids] Phase: checkPhase
714.23 s
[algebraic-graph-duoids] Running 2 test suites...
714.23 s
[algebraic-graph-duoids] Test suite laws: RUNNING...
714.27 s
[algebraic-graph-duoids] ━━━ Duoid.Normal (Graph Word8) ━━━
714.27 s
[algebraic-graph-duoids] ✓ unswapUnit passed 100 tests.
714.27 s
[algebraic-graph-duoids] ✓ interchange passed 100 tests.
714.27 s
[algebraic-graph-duoids] ✓ splitUnit passed 100 tests.
714.27 s
[algebraic-graph-duoids] ✓ joinUnit passed 100 tests.
714.27 s
[algebraic-graph-duoids] ✓ swapUnit passed 100 tests.
714.27 s
[algebraic-graph-duoids] ✓ 5 succeeded.
714.27 s
[algebraic-graph-duoids] Test suite laws: PASS
714.28 s
[algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-laws.log
714.28 s
[algebraic-graph-duoids] Test suite doctests: RUNNING...
714.77 s
[algebraic-graph-duoids] Examples: 0 Tried: 0 Errors: 0 Failures: 0
714.81 s
[algebraic-graph-duoids] Test suite doctests: PASS
714.82 s
[algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-doctests.log
714.82 s
[algebraic-graph-duoids] 2 of 2 test suites (2 of 2 test cases) passed.
714.83 s
[algebraic-graph-duoids] Phase: haddockPhase
715.48 s
[algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
715.48 s
[algebraic-graph-duoids] Running Haddock on library for algebraic-graph-duoids-0.0.1.0...
715.74 s
[algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, nothing ) [HIE file is missing]
715.78 s
[algebraic-graph-duoids] [2 of 2] Compiling Algebra.Graph.Duoid.Orphans ( src/Algebra/Graph/Duoid/Orphans.hs, nothing ) [HIE file is missing]
715.98 s
[algebraic-graph-duoids] Haddock coverage:
716.13 s
[algebraic-graph-duoids] 20% ( 1 / 5) in 'Algebra.Graph.Duoid'
716.13 s
[algebraic-graph-duoids] Missing documentation for:
716.13 s
[algebraic-graph-duoids] parEmptyGraph (src/Algebra/Graph/Duoid.hs:24)
716.13 s
[algebraic-graph-duoids] seqEmptyGraph (src/Algebra/Graph/Duoid.hs:27)
716.13 s
[algebraic-graph-duoids] parGraph (src/Algebra/Graph/Duoid.hs:30)
716.13 s
[algebraic-graph-duoids] seqGraph (src/Algebra/Graph/Duoid.hs:33)
716.13 s
[algebraic-graph-duoids] 100% ( 1 / 1) in 'Algebra.Graph.Duoid.Orphans'
720.46 s
[algebraic-graph-duoids] Documentation created: dist/doc/html/algebraic-graph-duoids,
720.50 s
[algebraic-graph-duoids] dist/doc/html/algebraic-graph-duoids/algebraic-graph-duoids.txt
721.11 s
[algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
721.83 s
[algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
721.91 s
[algebraic-graph-duoids] Phase: installPhase
722.01 s
[algebraic-graph-duoids] Installing library in /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.12.1/lib/x86_64-linux-ghc-9.12.1-f739/algebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW
722.82 s
[algebraic-graph-duoids] Phase: fixupPhase
722.93 s
[algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0
722.94 s
[algebraic-graph-duoids] shrinking /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.12.1/lib/x86_64-linux-ghc-9.12.1-f739/libHSalgebraic-graph-duoids-0.0.1.0-2qimKplQXtGICz5ybZbQVW-ghc9.12.1.so
722.95 s
[algebraic-graph-duoids] checking for references to /build/ in /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0...
722.98 s
[algebraic-graph-duoids] patching script interpreter paths in /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0
722.99 s
[algebraic-graph-duoids] stripping (with command strip and flags -S -p) in /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/lib
723.18 s
[algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc
723.19 s
[algebraic-graph-duoids] checking for references to /build/ in /nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc...
723.21 s
[algebraic-graph-duoids] patching script interpreter paths in /nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc
723.51 s
[algebraic-graph-duoids:post-build] Uploading to cachix cache "sellout": /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0 /nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc
724.79 s
[algebraic-graph-duoids:post-build] Pushing 2 paths (70 are already present) using zstd to cache sellout ⏳
724.79 s
[algebraic-graph-duoids:post-build]
725.16 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0 (1.20 MiB)
725.25 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc (523.55 KiB)
726.26 s
[algebraic-graph-duoids:post-build]
726.26 s
[algebraic-graph-duoids:post-build] All done.
726.38 s
[algebraic-graph-duoids:post-build] Uploading to the NixCI cache: /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0 /nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc
726.86 s
[algebraic-graph-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
727.04 s
[algebraic-graph-duoids:post-build] copying 2 paths...
727.04 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/3zqz1qc9lhkbnnr03dk68w1lz1pn21q9-algebraic-graph-duoids-0.0.1.0-doc' to 'https://cache.nix-ci.com'...
727.58 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0' to 'https://cache.nix-ci.com'...
728.71 s
[algebraic-graph-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
729.08 s
[algebraic-graph-duoids:post-build] copying 1 paths...
729.08 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/6lsm2jsyhyd8z7j3a6i1zibq5mjbysbx-algebraic-graph-duoids-0.0.1.0.drv' to 'https://cache.nix-ci.com'...
729.55 s
Progress: 10 of 14 built, 145 of 145 downloaded from cache
729.68 s
Building /nix/store/c6x0ym1al3b7mw9nrjhzph7sc82bfrpc-ghc-9.12.1-with-packages.drv
729.88 s
[ghc-9.12.1-with-packages] /nix/store/hi7kl7zxmih74wc2zql0059galswpa2d-duoidal-transformers-0.0.1.0/nix-support:
729.88 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
729.94 s
[ghc-9.12.1-with-packages] /nix/store/w2fimsw5ig7621j0879nm58pg5q0zxaa-duoids-hedgehog-0.0.1.0/nix-support:
729.94 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
729.95 s
[ghc-9.12.1-with-packages] /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7/nix-support:
729.95 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
729.97 s
[ghc-9.12.1-with-packages] /nix/store/zwxbk5mzaypwmzf2zxcd0brywj793w72-algebraic-graphs-0.7/nix-support:
729.97 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
729.98 s
[ghc-9.12.1-with-packages] /nix/store/3rg1ihmrm8ka1zzq6vfqw94rg8gg8is3-hedgehog-1.5/nix-support:
729.98 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.05 s
[ghc-9.12.1-with-packages] /nix/store/3rg1ihmrm8ka1zzq6vfqw94rg8gg8is3-hedgehog-1.5/nix-support:
730.06 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.07 s
[ghc-9.12.1-with-packages] /nix/store/qsv9n4s59sa83q6va9k9jv5k8dmw0p92-ansi-terminal-1.1.2/nix-support:
730.07 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.08 s
[ghc-9.12.1-with-packages] /nix/store/qsv9n4s59sa83q6va9k9jv5k8dmw0p92-ansi-terminal-1.1.2/nix-support:
730.08 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.09 s
[ghc-9.12.1-with-packages] /nix/store/i7lyljfdjjbs28kf5lglymhqpzra03v4-async-2.2.5/nix-support:
730.09 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.10 s
[ghc-9.12.1-with-packages] /nix/store/i7lyljfdjjbs28kf5lglymhqpzra03v4-async-2.2.5/nix-support:
730.10 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.11 s
[ghc-9.12.1-with-packages] /nix/store/ybmpwvkpckiqyia3j9451j8bsm8an2s8-barbies-2.1.1.0/nix-support:
730.11 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.15 s
[ghc-9.12.1-with-packages] /nix/store/ybmpwvkpckiqyia3j9451j8bsm8an2s8-barbies-2.1.1.0/nix-support:
730.15 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.15 s
[ghc-9.12.1-with-packages] /nix/store/r9g9yx0pf4sb0bhg2bgxywlxi2gp7l88-concurrent-output-1.10.21/nix-support:
730.15 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.15 s
[ghc-9.12.1-with-packages] /nix/store/r9g9yx0pf4sb0bhg2bgxywlxi2gp7l88-concurrent-output-1.10.21/nix-support:
730.15 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.16 s
[ghc-9.12.1-with-packages] /nix/store/cf2n41y0xbrif1db9a6k14jplixlj6d0-lifted-async-0.10.2.7/nix-support:
730.16 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.16 s
[ghc-9.12.1-with-packages] /nix/store/cf2n41y0xbrif1db9a6k14jplixlj6d0-lifted-async-0.10.2.7/nix-support:
730.17 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.18 s
[ghc-9.12.1-with-packages] /nix/store/n5bvgmddj1a1vcq81s32i7ccbhx07qb9-mmorph-1.2.0/nix-support:
730.18 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.18 s
[ghc-9.12.1-with-packages] /nix/store/n5bvgmddj1a1vcq81s32i7ccbhx07qb9-mmorph-1.2.0/nix-support:
730.18 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.18 s
[ghc-9.12.1-with-packages] /nix/store/ad47csx7c715qbn695fklkmlm60qs2ii-monad-control-1.0.3.1/nix-support:
730.18 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.18 s
[ghc-9.12.1-with-packages] /nix/store/ad47csx7c715qbn695fklkmlm60qs2ii-monad-control-1.0.3.1/nix-support:
730.18 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.19 s
[ghc-9.12.1-with-packages] /nix/store/v3hgabkm1a7jvnn4ys4kvqwklwflnqis-pretty-show-1.10/nix-support:
730.19 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.19 s
[ghc-9.12.1-with-packages] /nix/store/v3hgabkm1a7jvnn4ys4kvqwklwflnqis-pretty-show-1.10/nix-support:
730.19 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.19 s
[ghc-9.12.1-with-packages] /nix/store/nz98l6467qac3f3l1jdcf3gmwjc659d3-primitive-0.9.1.0/nix-support:
730.19 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.21 s
[ghc-9.12.1-with-packages] /nix/store/nz98l6467qac3f3l1jdcf3gmwjc659d3-primitive-0.9.1.0/nix-support:
730.22 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.23 s
[ghc-9.12.1-with-packages] /nix/store/2c6rybf8m8jrly84dzbyhv9xxzc81pzs-random-1.2.1.3/nix-support:
730.23 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.23 s
[ghc-9.12.1-with-packages] /nix/store/2c6rybf8m8jrly84dzbyhv9xxzc81pzs-random-1.2.1.3/nix-support:
730.23 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.25 s
[ghc-9.12.1-with-packages] /nix/store/346qzqng2wkldyma6igal0i8w3clp0mw-resourcet-1.3.0/nix-support:
730.25 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.27 s
[ghc-9.12.1-with-packages] /nix/store/346qzqng2wkldyma6igal0i8w3clp0mw-resourcet-1.3.0/nix-support:
730.27 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.27 s
[ghc-9.12.1-with-packages] /nix/store/vqvlw9p3sh64qbc5wmqciiqpsdcacw2z-safe-exceptions-0.1.7.4/nix-support:
730.27 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.28 s
[ghc-9.12.1-with-packages] /nix/store/vqvlw9p3sh64qbc5wmqciiqpsdcacw2z-safe-exceptions-0.1.7.4/nix-support:
730.28 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.29 s
[ghc-9.12.1-with-packages] /nix/store/llbvsa4qwzkpdf064fkxckdymixlssa0-transformers-base-0.4.6/nix-support:
730.29 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.29 s
[ghc-9.12.1-with-packages] /nix/store/llbvsa4qwzkpdf064fkxckdymixlssa0-transformers-base-0.4.6/nix-support:
730.29 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.29 s
[ghc-9.12.1-with-packages] /nix/store/bnca7ki3sf219if16d403g91za6xbmb3-wl-pprint-annotated-0.1.0.1/nix-support:
730.29 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.30 s
[ghc-9.12.1-with-packages] /nix/store/bnca7ki3sf219if16d403g91za6xbmb3-wl-pprint-annotated-0.1.0.1/nix-support:
730.30 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.31 s
[ghc-9.12.1-with-packages] /nix/store/4ddn0biwyk9v185vyl40030qszsja32p-ansi-terminal-types-1.1/nix-support:
730.31 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.31 s
[ghc-9.12.1-with-packages] /nix/store/4ddn0biwyk9v185vyl40030qszsja32p-ansi-terminal-types-1.1/nix-support:
730.31 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.35 s
[ghc-9.12.1-with-packages] /nix/store/cwqwam6n53231bm299x6lmna5rjf1qjz-hashable-1.4.7.0/nix-support:
730.35 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.37 s
[ghc-9.12.1-with-packages] /nix/store/cwqwam6n53231bm299x6lmna5rjf1qjz-hashable-1.4.7.0/nix-support:
730.37 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.39 s
[ghc-9.12.1-with-packages] /nix/store/z3isz5mf07j2ipn8i8lpb1lzxagvarf9-distributive-0.6.2.1/nix-support:
730.39 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.44 s
[ghc-9.12.1-with-packages] /nix/store/z3isz5mf07j2ipn8i8lpb1lzxagvarf9-distributive-0.6.2.1/nix-support:
730.44 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.48 s
[ghc-9.12.1-with-packages] /nix/store/yl6jjm3jvhmgh228fwm119amj2pvywgl-constraints-0.14.2/nix-support:
730.48 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.48 s
[ghc-9.12.1-with-packages] /nix/store/yl6jjm3jvhmgh228fwm119amj2pvywgl-constraints-0.14.2/nix-support:
730.48 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.50 s
[ghc-9.12.1-with-packages] /nix/store/x7azizjy4c52ijqkjcg21bzf9kd2cmrd-lifted-base-0.2.3.12/nix-support:
730.50 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.54 s
[ghc-9.12.1-with-packages] /nix/store/x7azizjy4c52ijqkjcg21bzf9kd2cmrd-lifted-base-0.2.3.12/nix-support:
730.54 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.57 s
[ghc-9.12.1-with-packages] /nix/store/1bzzh814ank4w463vp6nis9hjcsmsv23-transformers-compat-0.7.2/nix-support:
730.57 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.57 s
[ghc-9.12.1-with-packages] /nix/store/1bzzh814ank4w463vp6nis9hjcsmsv23-transformers-compat-0.7.2/nix-support:
730.57 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.59 s
[ghc-9.12.1-with-packages] /nix/store/pdgkv5b35wwazg0rkiblywql74brrybn-splitmix-0.1.1/nix-support:
730.59 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.60 s
[ghc-9.12.1-with-packages] /nix/store/pdgkv5b35wwazg0rkiblywql74brrybn-splitmix-0.1.1/nix-support:
730.60 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.60 s
[ghc-9.12.1-with-packages] /nix/store/9vk33g3cma3g74298czk1gmaimikw3x2-unliftio-core-0.2.1.0/nix-support:
730.60 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.61 s
[ghc-9.12.1-with-packages] /nix/store/9vk33g3cma3g74298czk1gmaimikw3x2-unliftio-core-0.2.1.0/nix-support:
730.61 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.61 s
[ghc-9.12.1-with-packages] /nix/store/6fm6badzwhkjw490cv3n54c1zxpy125j-base-orphans-0.9.3/nix-support:
730.61 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.62 s
[ghc-9.12.1-with-packages] /nix/store/6fm6badzwhkjw490cv3n54c1zxpy125j-base-orphans-0.9.3/nix-support:
730.62 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.62 s
[ghc-9.12.1-with-packages] /nix/store/xaw9bx3il5rk6l5cg6m9rhpq0z4syjs8-tagged-0.8.9/nix-support:
730.62 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.63 s
[ghc-9.12.1-with-packages] /nix/store/xaw9bx3il5rk6l5cg6m9rhpq0z4syjs8-tagged-0.8.9/nix-support:
730.63 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.64 s
[ghc-9.12.1-with-packages] /nix/store/0h7l00ix0g1idvsxi9mvf27z05krln3r-boring-0.2.2/nix-support:
730.64 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
730.65 s
[ghc-9.12.1-with-packages] /nix/store/0h7l00ix0g1idvsxi9mvf27z05krln3r-boring-0.2.2/nix-support:
730.65 s
[ghc-9.12.1-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/0qhvr8rayqbs2jwzpkfbjh4kxf4qigdh-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
734.04 s
[ghc-9.12.1-with-packages:post-build] Uploading to cachix cache "sellout": /nix/store/mg3wjqs49b1pfjsdk3vyvw47gfds270n-ghc-9.12.1-with-packages
735.25 s
[ghc-9.12.1-with-packages:post-build] Pushing 1 paths (138 are already present) using zstd to cache sellout ⏳
735.25 s
[ghc-9.12.1-with-packages:post-build]
735.63 s
[ghc-9.12.1-with-packages:post-build] Pushing /nix/store/mg3wjqs49b1pfjsdk3vyvw47gfds270n-ghc-9.12.1-with-packages (6.02 MiB)
737.67 s
[ghc-9.12.1-with-packages:post-build]
737.67 s
[ghc-9.12.1-with-packages:post-build] All done.
737.85 s
[ghc-9.12.1-with-packages:post-build] Uploading to the NixCI cache: /nix/store/mg3wjqs49b1pfjsdk3vyvw47gfds270n-ghc-9.12.1-with-packages
738.52 s
[ghc-9.12.1-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
738.86 s
[ghc-9.12.1-with-packages:post-build] copying 1 paths...
738.86 s
[ghc-9.12.1-with-packages:post-build] copying path '/nix/store/mg3wjqs49b1pfjsdk3vyvw47gfds270n-ghc-9.12.1-with-packages' to 'https://cache.nix-ci.com'...
741.26 s
[ghc-9.12.1-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
741.72 s
[ghc-9.12.1-with-packages:post-build] copying 1 paths...
741.72 s
[ghc-9.12.1-with-packages:post-build] copying path '/nix/store/c6x0ym1al3b7mw9nrjhzph7sc82bfrpc-ghc-9.12.1-with-packages.drv' to 'https://cache.nix-ci.com'...
742.10 s
Progress: 11 of 13 built, 145 of 145 downloaded from cache
742.20 s
Building /nix/store/yc3zi8pgxawk7h50sk69794w5n8l6ylp-all-packages.drv
742.32 s
[all-packages] created 3 symlinks in user environment
742.48 s
[all-packages:post-build] Uploading to cachix cache "sellout": /nix/store/lldg7y7mr4wzxmmksag1kvsh8cv2h8r3-all-packages
743.57 s
[all-packages:post-build] Pushing 1 paths (139 are already present) using zstd to cache sellout ⏳
743.57 s
[all-packages:post-build]
743.97 s
[all-packages:post-build] Pushing /nix/store/lldg7y7mr4wzxmmksag1kvsh8cv2h8r3-all-packages (872.00 B)
745.04 s
[all-packages:post-build]
745.05 s
[all-packages:post-build] All done.
745.27 s
[all-packages:post-build] Uploading to the NixCI cache: /nix/store/lldg7y7mr4wzxmmksag1kvsh8cv2h8r3-all-packages
745.72 s
[all-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
746.00 s
[all-packages:post-build] copying 1 paths...
746.00 s
[all-packages:post-build] copying path '/nix/store/lldg7y7mr4wzxmmksag1kvsh8cv2h8r3-all-packages' to 'https://cache.nix-ci.com'...
746.88 s
[all-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
747.26 s
[all-packages:post-build] copying 1 paths...
747.26 s
[all-packages:post-build] copying path '/nix/store/yc3zi8pgxawk7h50sk69794w5n8l6ylp-all-packages.drv' to 'https://cache.nix-ci.com'...
747.73 s
Progress: 12 of 13 built, 145 of 145 downloaded from cache
747.73 s
Progress: 13 of 13 built, 145 of 145 downloaded from cache
747.73 s
/nix/store/lldg7y7mr4wzxmmksag1kvsh8cv2h8r3-all-packages
747.82 s
Build succeeded.