build packages.x86_64-linux.ghc967_all
904.26 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
904.26 s
[algebraic-graphs]
904.26 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.emap ============
904.26 s
[algebraic-graphs] OK: emap h empty == empty
904.26 s
[algebraic-graphs] OK: emap h (vertex x) == vertex x
904.26 s
[algebraic-graphs] OK: emap h (edge e x y) == edge (h e) x y
904.26 s
[algebraic-graphs] OK: emap h (overlay x y) == overlay (emap h x) (emap h y)
904.26 s
[algebraic-graphs] OK: emap h (connect e x y) == connect (h e) (emap h x) (emap h y)
904.26 s
[algebraic-graphs] OK: emap id == id
904.26 s
[algebraic-graphs] OK: emap g . emap h == emap (g . h)
904.26 s
[algebraic-graphs]
904.26 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.induce ============
904.26 s
[algebraic-graphs] OK: induce (const True ) x == x
904.26 s
[algebraic-graphs] OK: induce (const False) x == empty
904.26 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
904.26 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
904.26 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
904.26 s
[algebraic-graphs]
904.26 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.induceJust ============
905.38 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
905.38 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
905.38 s
[algebraic-graphs] OK: induceJust . gmap Just == id
905.38 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.closure ============
905.38 s
[algebraic-graphs] OK: closure empty == empty
905.38 s
[algebraic-graphs] OK: closure (vertex x) == edge one x x
905.38 s
[algebraic-graphs] OK: closure (edge e x x) == edge one x x
905.38 s
[algebraic-graphs] OK: closure (edge e x y) == edges [(one,x,x), (e,x,y), (one,y,y)]
905.38 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
905.38 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
905.38 s
[algebraic-graphs] OK: closure . closure == closure
905.38 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.reflexiveClosure ============
905.38 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
905.38 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge one x x
905.38 s
[algebraic-graphs] OK: reflexiveClosure (edge e x x) == edge one x x
905.38 s
[algebraic-graphs] OK: reflexiveClosure (edge e x y) == edges [(one,x,x), (e,x,y), (one,y,y)]
905.38 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.symmetricClosure ============
905.38 s
[algebraic-graphs] OK: symmetricClosure empty == empty
905.38 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
905.38 s
[algebraic-graphs] OK: symmetricClosure (edge e x y) == edges [(e,x,y), (e,y,x)]
905.38 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
905.38 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.AdjacencyMap.transitiveClosure ============
905.38 s
[algebraic-graphs] OK: transitiveClosure empty == empty
905.38 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
905.38 s
[algebraic-graphs] OK: transitiveClosure (edge e x y) == edge e x y
905.38 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.empty ============
905.38 s
[algebraic-graphs] OK: isEmpty empty == True
905.38 s
[algebraic-graphs] OK: hasVertex x empty == False
905.38 s
[algebraic-graphs] OK: vertexCount empty == 0
905.38 s
[algebraic-graphs] OK: edgeCount empty == 0
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.vertex ============
905.38 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
905.38 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
905.38 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
905.38 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.edge ============
905.38 s
[algebraic-graphs] OK: edge e x y == connect e (vertex x) (vertex y)
905.38 s
[algebraic-graphs] OK: edge zero x y == vertices [x,y]
905.38 s
[algebraic-graphs] OK: hasEdge x y (edge e x y) == (e /= mempty)
905.38 s
[algebraic-graphs] OK: edgeLabel x y (edge e x y) == e
905.38 s
[algebraic-graphs] OK: edgeCount (edge e x y) == if e == mempty then 0 else 1
905.38 s
[algebraic-graphs] OK: vertexCount (edge e 1 1) == 1
905.38 s
[algebraic-graphs] OK: vertexCount (edge e 1 2) == 2
905.38 s
[algebraic-graphs] OK: x -<e>- y == edge e x y
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.overlay ============
905.38 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
905.38 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
905.38 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
905.38 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
905.38 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
905.38 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
905.38 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
905.38 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] OK: edgeLabel x y $ overlay (edge e x y) (edge zero x y) == e
905.38 s
[algebraic-graphs] OK: edgeLabel x y $ overlay (edge e x y) (edge f x y) == e <+> f
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] OK: edgeLabel 1 3 $ transitiveClosure (overlay (edge e 1 2) (edge one 2 3)) == e
905.38 s
[algebraic-graphs] OK: edgeLabel 1 3 $ transitiveClosure (overlay (edge e 1 2) (edge f 2 3)) == e <.> f
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.connect ============
905.38 s
[algebraic-graphs] OK: isEmpty (connect e x y) == isEmpty x && isEmpty y
905.38 s
[algebraic-graphs] OK: hasVertex z (connect e x y) == hasVertex z x || hasVertex z y
905.38 s
[algebraic-graphs] OK: vertexCount (connect e x y) >= vertexCount x
905.38 s
[algebraic-graphs] OK: vertexCount (connect e x y) <= vertexCount x + vertexCount y
905.38 s
[algebraic-graphs] OK: edgeCount (connect e x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
905.38 s
[algebraic-graphs] OK: vertexCount (connect e 1 2) == 2
905.38 s
[algebraic-graphs] OK: edgeCount (connect e 1 2) == if e == zero then 0 else 1
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.vertices ============
905.38 s
[algebraic-graphs] OK: vertices [] == empty
905.38 s
[algebraic-graphs] OK: vertices [x] == vertex x
905.38 s
[algebraic-graphs] OK: vertices == overlays . map vertex
905.38 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
905.38 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
905.38 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.edges ============
905.38 s
[algebraic-graphs] OK: edges [] == empty
905.38 s
[algebraic-graphs] OK: edges [(e,x,y)] == edge e x y
905.38 s
[algebraic-graphs] OK: edges == overlays . map (\(e, x, y) -> edge e x y)
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.overlays ============
905.38 s
[algebraic-graphs] OK: overlays [] == empty
905.38 s
[algebraic-graphs] OK: overlays [x] == x
905.38 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
905.38 s
[algebraic-graphs] OK: overlays == foldr overlay empty
905.38 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.foldg ============
905.38 s
[algebraic-graphs] OK: foldg empty vertex connect == id
905.38 s
[algebraic-graphs] OK: foldg empty vertex (fmap flip connect) == transpose
905.38 s
[algebraic-graphs] OK: foldg 1 (const 1) (const (+)) == size
905.38 s
[algebraic-graphs] OK: foldg True (const False) (const (&&)) == isEmpty
905.38 s
[algebraic-graphs] OK: foldg False (== x) (const (||)) == hasVertex x
905.38 s
[algebraic-graphs] OK: foldg Set.empty Set.singleton (const Set.union) == vertexSet
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.buildg ============
905.38 s
[algebraic-graphs] OK: buildg (\e _ _ -> e) == empty
905.38 s
[algebraic-graphs] OK: buildg (\_ v _ -> v x) == vertex x
905.38 s
[algebraic-graphs] OK: buildg (\e v c -> c l (foldg e v c x) (foldg e v c y)) == connect l x y
905.38 s
[algebraic-graphs] OK: buildg (\e v c -> foldr (c zero) e (map v xs)) == vertices xs
905.38 s
[algebraic-graphs] OK: buildg (\e v c -> foldg e v (flip c) g) == transpose g
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.isSubgraphOf ============
905.38 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
905.38 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
905.38 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.isEmpty ============
905.38 s
[algebraic-graphs] OK: isEmpty empty == True
905.38 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
905.38 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
905.38 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
905.38 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge e x y) == False
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.size ============
905.38 s
[algebraic-graphs] OK: size empty == 1
905.38 s
[algebraic-graphs] OK: size (vertex x) == 1
905.38 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
905.38 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
905.38 s
[algebraic-graphs] OK: size x >= 1
905.38 s
[algebraic-graphs] OK: size x >= vertexCount x
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.hasVertex ============
905.38 s
[algebraic-graphs] OK: hasVertex x empty == False
905.38 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
905.38 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.hasEdge ============
905.38 s
[algebraic-graphs] OK: hasEdge x y empty == False
905.38 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
905.38 s
[algebraic-graphs] OK: hasEdge x y (edge e x y) == (e /= zero)
905.38 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
905.38 s
[algebraic-graphs] OK: hasEdge x y == not . null . filter (\(_,ex,ey) -> ex == x && ey == y) . edgeList
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.edgeLabel ============
905.38 s
[algebraic-graphs] OK: edgeLabel x y empty == zero
905.38 s
[algebraic-graphs] OK: edgeLabel x y (vertex z) == zero
905.38 s
[algebraic-graphs] OK: edgeLabel x y (edge e x y) == e
905.38 s
[algebraic-graphs] OK: edgeLabel s t (overlay x y) == edgeLabel s t x + edgeLabel s t y
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.vertexCount ============
905.38 s
[algebraic-graphs] OK: vertexCount empty == 0
905.38 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
905.38 s
[algebraic-graphs] OK: vertexCount == length . vertexList
905.38 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.edgeCount ============
905.38 s
[algebraic-graphs] OK: edgeCount empty == 0
905.38 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
905.38 s
[algebraic-graphs] OK: edgeCount (edge e x y) == if e == zero then 0 else 1
905.38 s
[algebraic-graphs] OK: edgeCount == length . edgeList
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.vertexList ============
905.38 s
[algebraic-graphs] OK: vertexList empty == []
905.38 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
905.38 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.edgeList ============
905.38 s
[algebraic-graphs] OK: edgeList empty == []
905.38 s
[algebraic-graphs] OK: edgeList (vertex x) == []
905.38 s
[algebraic-graphs] OK: edgeList (edge e x y) == if e == zero then [] else [(e,x,y)]
905.38 s
[algebraic-graphs]
905.38 s
[algebraic-graphs] ============ Labelled.Graph.vertexSet ============
905.38 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
905.39 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
905.39 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
905.39 s
[algebraic-graphs]
905.39 s
[algebraic-graphs] ============ Labelled.Graph.edgeSet ============
905.39 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
905.39 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
905.39 s
[algebraic-graphs] OK: edgeSet (edge e x y) == if e == zero then Set.empty else Set.singleton (e,x,y)
905.39 s
[algebraic-graphs]
905.39 s
[algebraic-graphs] ============ Labelled.Graph.preSet ============
905.39 s
[algebraic-graphs] OK: preSet x empty == Set.empty
905.39 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
907.94 s
[algebraic-graphs] OK: preSet 1 (edge e 1 2) == Set.empty
908.09 s
[algebraic-graphs] OK: preSet y (edge e x y) == if e == zero then Set.empty else Set.fromList [x]
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.postSet ============
908.09 s
[algebraic-graphs] OK: postSet x empty == Set.empty
908.09 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
908.09 s
[algebraic-graphs] OK: postSet x (edge e x y) == if e == zero then Set.empty else Set.fromList [y]
908.09 s
[algebraic-graphs] OK: postSet 2 (edge e 1 2) == Set.empty
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.removeVertex ============
908.09 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
908.09 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
908.09 s
[algebraic-graphs] OK: removeVertex x (edge e x x) == empty
908.09 s
[algebraic-graphs] OK: removeVertex 1 (edge e 1 2) == vertex 2
908.09 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.removeEdge ============
908.09 s
[algebraic-graphs] OK: removeEdge x y (edge e x y) == vertices [x,y]
908.09 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
908.09 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
908.09 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
908.09 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.replaceVertex ============
908.09 s
[algebraic-graphs] OK: replaceVertex x x == id
908.09 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
908.09 s
[algebraic-graphs] OK: replaceVertex x y == fmap (\v -> if v == x then y else v)
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.replaceEdge ============
908.09 s
[algebraic-graphs] OK: replaceEdge e x y z == overlay (removeEdge x y z) (edge e x y)
908.09 s
[algebraic-graphs] OK: replaceEdge e x y (edge f x y) == edge e x y
908.09 s
[algebraic-graphs] OK: edgeLabel x y (replaceEdge e x y z) == e
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.transpose ============
908.09 s
[algebraic-graphs] OK: transpose empty == empty
908.09 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
908.09 s
[algebraic-graphs] OK: transpose (edge e x y) == edge e y x
908.09 s
[algebraic-graphs] OK: transpose . transpose == id
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.fmap ============
908.09 s
[algebraic-graphs] OK: fmap f empty == empty
908.09 s
[algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
908.09 s
[algebraic-graphs] OK: fmap f (edge e x y) == edge e (f x) (f y)
908.09 s
[algebraic-graphs] OK: fmap id == id
908.09 s
[algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.emap ============
908.09 s
[algebraic-graphs] OK: emap h empty == empty
908.09 s
[algebraic-graphs] OK: emap h (vertex x) == vertex x
908.09 s
[algebraic-graphs] OK: emap h (edge e x y) == edge (h e) x y
908.09 s
[algebraic-graphs] OK: emap h (overlay x y) == overlay (emap h x) (emap h y)
908.09 s
[algebraic-graphs] OK: emap h (connect e x y) == connect (h e) (emap h x) (emap h y)
908.09 s
[algebraic-graphs] OK: emap id == id
908.09 s
[algebraic-graphs] OK: emap g . emap h == emap (g . h)
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.induce ============
908.09 s
[algebraic-graphs] OK: induce (const True ) x == x
908.09 s
[algebraic-graphs] OK: induce (const False) x == empty
908.09 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
908.09 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
908.09 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.induceJust ============
908.09 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
908.09 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
908.09 s
[algebraic-graphs] OK: induceJust . gmap Just == id
908.09 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.closure ============
908.09 s
[algebraic-graphs] OK: closure empty == empty
908.09 s
[algebraic-graphs] OK: closure (vertex x) == edge one x x
908.09 s
[algebraic-graphs] OK: closure (edge e x x) == edge one x x
908.09 s
[algebraic-graphs] OK: closure (edge e x y) == edges [(one,x,x), (e,x,y), (one,y,y)]
908.09 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
908.09 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
908.09 s
[algebraic-graphs] OK: closure . closure == closure
908.09 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.reflexiveClosure ============
908.09 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
908.09 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge one x x
908.09 s
[algebraic-graphs] OK: reflexiveClosure (edge e x x) == edge one x x
908.09 s
[algebraic-graphs] OK: reflexiveClosure (edge e x y) == edges [(one,x,x), (e,x,y), (one,y,y)]
908.09 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.symmetricClosure ============
908.09 s
[algebraic-graphs] OK: symmetricClosure empty == empty
908.09 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
908.09 s
[algebraic-graphs] OK: symmetricClosure (edge e x y) == edges [(e,x,y), (e,y,x)]
908.09 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
908.09 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.transitiveClosure ============
908.09 s
[algebraic-graphs] OK: transitiveClosure empty == empty
908.09 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
908.09 s
[algebraic-graphs] OK: transitiveClosure (edge e x y) == edge e x y
908.09 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Labelled.Graph.context ============
908.09 s
[algebraic-graphs] OK: context (const False) x == Nothing
908.09 s
[algebraic-graphs] OK: context (== 1) (edge e 1 2) == if e == zero then Just (Context [] []) else Just (Context [] [(e,2)])
908.09 s
[algebraic-graphs] OK: context (== 2) (edge e 1 2) == if e == zero then Just (Context [] []) else Just (Context [(e,1)] [] )
908.09 s
[algebraic-graphs] OK: context (const True ) (edge e 1 2) == if e == zero then Just (Context [] []) else Just (Context [(e,1)] [(e,2)])
908.09 s
[algebraic-graphs] OK: context (== 4) (3 * 1 * 4 * 1 * 5) == Just (Context [(one,3), (one,1)] [(one,1), (one,5)])
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap ============
908.09 s
[algebraic-graphs] OK: Axioms of non-empty graphs
908.09 s
[algebraic-graphs] OK: Theorems of non-empty graphs
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Ord (NonEmpty.AdjacencyMap a) ============
908.09 s
[algebraic-graphs] OK: vertex 1 < vertex 2
908.09 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
908.09 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
908.09 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
908.09 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
908.09 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
908.09 s
[algebraic-graphs] OK: x <= x + y
908.09 s
[algebraic-graphs] OK: x + y <= x * y
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ Show (NonEmpty.AdjacencyMap a) ============
908.09 s
[algebraic-graphs] OK: show (1 :: AdjacencyMap Int) == "vertex 1"
908.09 s
[algebraic-graphs] OK: show (1 + 2 :: AdjacencyMap Int) == "vertices1 [1,2]"
908.09 s
[algebraic-graphs] OK: show (1 * 2 :: AdjacencyMap Int) == "edge 1 2"
908.09 s
[algebraic-graphs] OK: show (1 * 2 * 3 :: AdjacencyMap Int) == "edges1 [(1,2),(1,3),(2,3)]"
908.09 s
[algebraic-graphs] OK: show (1 * 2 + 3 :: AdjacencyMap Int) == "overlay (vertex 3) (edge 1 2)"
908.09 s
[algebraic-graphs] OK: show (vertex (-1) :: AdjacencyMap Int) == "vertex (-1)"
908.09 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) :: AdjacencyMap Int) == "vertices1 [-2,-1]"
908.09 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) :: AdjacencyMap Int) == "edge (-1) (-2)"
908.09 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) * vertex (-3) :: AdjacencyMap Int) == "edges1 [(-2,-3),(-1,-3),(-1,-2)]"
908.09 s
[algebraic-graphs] OK: show (vertex (-1) * vertex (-2) + vertex (-3) :: AdjacencyMap Int) == "overlay (vertex (-3)) (edge (-1) (-2))"
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.toNonEmpty ============
908.09 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
908.09 s
[algebraic-graphs] OK: toNonEmpty . fromNonEmpty == Just
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.fromNonEmpty ============
908.09 s
[algebraic-graphs] OK: isEmpty . fromNonEmpty == const False
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertex ============
908.09 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
908.09 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
908.09 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edge ============
908.09 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
908.09 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
908.09 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
908.09 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
908.09 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlay ============
908.09 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
908.09 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
908.09 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
908.09 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
908.09 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
908.09 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
908.09 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connect ============
908.09 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
908.09 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
908.09 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
908.09 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
908.09 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
908.09 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
908.09 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
908.09 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
908.09 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertices1 ============
908.09 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
908.09 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
908.09 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
908.09 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
908.09 s
[algebraic-graphs]
908.09 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edges1 ============
908.09 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
908.09 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
908.09 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
908.09 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlays1 ============
911.02 s
[algebraic-graphs] OK: overlays1 [x] == x
911.02 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.connects1 ============
911.02 s
[algebraic-graphs] OK: connects1 [x] == x
911.02 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.isSubgraphOf ============
911.02 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
911.02 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
911.02 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
911.02 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasVertex ============
911.02 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasEdge ============
911.02 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
911.02 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
911.02 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
911.02 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexCount ============
911.02 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
911.02 s
[algebraic-graphs] OK: vertexCount x >= 1
911.02 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeCount ============
911.02 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
911.02 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
911.02 s
[algebraic-graphs] OK: edgeCount == length . edgeList
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexList1 ============
911.02 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
911.02 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeList ============
911.02 s
[algebraic-graphs] OK: edgeList (vertex x) == []
911.02 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
911.02 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
911.02 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
911.02 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexSet ============
911.02 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
911.02 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
911.02 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeSet ============
911.02 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
911.02 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
911.02 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.preSet ============
911.02 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
911.02 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
911.02 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.postSet ============
911.02 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
911.02 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
911.02 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.path1 ============
911.02 s
[algebraic-graphs] OK: path1 [x] == vertex x
911.02 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
911.02 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.circuit1 ============
911.02 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
911.02 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
911.02 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.clique1 ============
911.02 s
[algebraic-graphs] OK: clique1 [x] == vertex x
911.02 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
911.02 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
911.02 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
911.02 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.biclique1 ============
911.02 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
911.02 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.star ============
911.02 s
[algebraic-graphs] OK: star x [] == vertex x
911.02 s
[algebraic-graphs] OK: star x [y] == edge x y
911.02 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.stars1 ============
911.02 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
911.02 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
911.02 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
911.02 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
911.02 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.tree ============
911.02 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
911.02 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
911.02 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
911.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)]
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeVertex1 ============
911.02 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
911.02 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
911.02 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
911.02 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
911.02 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeEdge ============
911.02 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
911.02 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
911.02 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
911.02 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.replaceVertex ============
911.02 s
[algebraic-graphs] OK: replaceVertex x x == id
911.02 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
911.02 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.mergeVertices ============
911.02 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
911.02 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
911.02 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
911.02 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transpose ============
911.02 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
911.02 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
911.02 s
[algebraic-graphs] OK: transpose . transpose == id
911.02 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.gmap ============
911.02 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
911.02 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
911.02 s
[algebraic-graphs] OK: gmap id == id
911.02 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induce1 ============
911.02 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
911.02 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
911.02 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
911.02 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induceJust1 ============
911.02 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
911.02 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
911.02 s
[algebraic-graphs] OK: induceJust1 . gmap Just == Just
911.02 s
[algebraic-graphs] OK: induceJust1 . gmap (\x -> if p x then Just x else Nothing) == induce1 p
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.closure ============
911.02 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
911.02 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
911.02 s
[algebraic-graphs] OK: closure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
911.02 s
[algebraic-graphs] OK: closure (path1 $ nub xs) == reflexiveClosure (clique1 $ nub xs)
911.02 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
911.02 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
911.02 s
[algebraic-graphs] OK: closure . closure == closure
911.02 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.reflexiveClosure ============
911.02 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
911.02 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
911.02 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
911.02 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.symmetricClosure ============
911.02 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
911.02 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges1 [(x,y), (y,x)]
911.02 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
911.02 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transitiveClosure ============
911.02 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
911.02 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
911.02 s
[algebraic-graphs] OK: transitiveClosure (path1 $ nub xs) == clique1 (nub $ xs)
911.02 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ NonEmpty.Graph.============
911.02 s
[algebraic-graphs] OK: Axioms of non-empty graphs
911.02 s
[algebraic-graphs] OK: Theorems of non-empty graphs
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ Ord (NonEmpty.Graph a) ============
911.02 s
[algebraic-graphs] OK: vertex 1 < vertex 2
911.02 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
911.02 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
911.02 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
911.02 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
911.02 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
911.02 s
[algebraic-graphs] OK: x <= x + y
911.02 s
[algebraic-graphs] OK: x + y <= x * y
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ Functor (NonEmpty.Graph a) ============
911.02 s
[algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
911.02 s
[algebraic-graphs] OK: fmap f (edge x y) == edge (f x) (f y)
911.02 s
[algebraic-graphs] OK: fmap id == id
911.02 s
[algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
911.02 s
[algebraic-graphs]
911.02 s
[algebraic-graphs] ============ Monad (NonEmpty.Graph a) ============
911.02 s
[algebraic-graphs] OK: (vertex x >>= f) == f x
912.35 s
[algebraic-graphs] OK: (edge x y >>= f) == connect (f x) (f y)
912.35 s
[algebraic-graphs] OK: (vertices1 xs >>= f) == overlays1 (fmap f xs)
912.35 s
[algebraic-graphs] OK: (x >>= vertex) == x
912.35 s
[algebraic-graphs] OK: ((x >>= f) >>= g) == (x >>= (\y -> (f y) >>= g))
912.35 s
[algebraic-graphs]
912.35 s
[algebraic-graphs] ============ NonEmpty.Graph.toNonEmpty ============
912.35 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
912.35 s
[algebraic-graphs] OK: toNonEmpty (toGraph x) == Just (x :: NonEmpty.Graph a)
912.35 s
[algebraic-graphs]
912.35 s
[algebraic-graphs] ============ NonEmpty.Graph.vertex ============
912.35 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
912.35 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
912.35 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
912.35 s
[algebraic-graphs] OK: size (vertex x) == 1
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.edge ============
912.36 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
912.36 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
912.36 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
912.36 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
912.36 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay ============
912.36 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
912.36 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
912.36 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
912.36 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
912.36 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
912.36 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
912.36 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
912.36 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay1 ============
912.36 s
[algebraic-graphs] OK: overlay1 empty x == x
912.36 s
[algebraic-graphs] OK: x /= empty ==> overlay1 x y == overlay (fromJust $ toNonEmpty x) y
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.connect ============
912.36 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
912.36 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
912.36 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
912.36 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
912.36 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
912.36 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
912.36 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
912.36 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
912.36 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
912.36 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.vertices1 ============
912.36 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
912.36 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
912.36 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
912.36 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.edges1 ============
912.36 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
912.36 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
912.36 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.overlays1 ============
912.36 s
[algebraic-graphs] OK: overlays1 [x] == x
912.36 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.connects1 ============
912.36 s
[algebraic-graphs] OK: connects1 [x] == x
912.36 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.foldg1 ============
912.36 s
[algebraic-graphs] OK: foldg1 vertex overlay connect == id
912.36 s
[algebraic-graphs] OK: foldg1 vertex overlay (flip connect) == transpose
912.36 s
[algebraic-graphs] OK: foldg1 (const 1) (+) (+) == size
912.36 s
[algebraic-graphs] OK: foldg1 (== x) (||) (||) == hasVertex x
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.isSubgraphOf ============
912.36 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
912.36 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
912.36 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
912.36 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.(===) ============
912.36 s
[algebraic-graphs] OK: x === x == True
912.36 s
[algebraic-graphs] OK: x + y === x + y == True
912.36 s
[algebraic-graphs] OK: 1 + 2 === 2 + 1 == False
912.36 s
[algebraic-graphs] OK: x + y === x * y == False
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.size ============
912.36 s
[algebraic-graphs] OK: size (vertex x) == 1
912.36 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
912.36 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
912.36 s
[algebraic-graphs] OK: size x >= 1
912.36 s
[algebraic-graphs] OK: size x >= vertexCount x
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.hasVertex ============
912.36 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.hasEdge ============
912.36 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
912.36 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
912.36 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
912.36 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexCount ============
912.36 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
912.36 s
[algebraic-graphs] OK: vertexCount x >= 1
912.36 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeCount ============
912.36 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
912.36 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
912.36 s
[algebraic-graphs] OK: edgeCount == length . edgeList
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexList1 ============
912.36 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
912.36 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeList ============
912.36 s
[algebraic-graphs] OK: edgeList (vertex x) == []
912.36 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
912.36 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
912.36 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
912.36 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexSet ============
912.36 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
912.36 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
912.36 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeSet ============
912.36 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
912.36 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
912.36 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.path1 ============
912.36 s
[algebraic-graphs] OK: path1 [x] == vertex x
912.36 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
912.36 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.circuit1 ============
912.36 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
912.36 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
912.36 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.clique1 ============
912.36 s
[algebraic-graphs] OK: clique1 [x] == vertex x
912.36 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
912.36 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
912.36 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
912.36 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.biclique1 ============
912.36 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
912.36 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.star ============
912.36 s
[algebraic-graphs] OK: star x [] == vertex x
912.36 s
[algebraic-graphs] OK: star x [y] == edge x y
912.36 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.stars1 ============
912.36 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
912.36 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
912.36 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
912.36 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
912.36 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.tree ============
912.36 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
912.36 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
912.36 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
912.36 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.mesh1 ============
912.36 s
[algebraic-graphs] OK: mesh1 [x] [y] == vertex (x, y)
912.36 s
[algebraic-graphs] OK: mesh1 xs ys == box (path1 xs) (path1 ys)
912.36 s
[algebraic-graphs] OK: mesh1 [1,2,3] ['a', 'b'] == <correct result>
912.36 s
[algebraic-graphs] OK: size (mesh xs ys) == max 1 (3 * length xs * length ys - length xs - length ys -1)
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.torus1 ============
912.36 s
[algebraic-graphs] OK: torus1 [x] [y] == edge (x,y) (x,y)
912.36 s
[algebraic-graphs] OK: torus1 xs ys == box (circuit1 xs) (circuit1 ys)
912.36 s
[algebraic-graphs] OK: torus1 [1,2] ['a', 'b'] == <correct result>
912.36 s
[algebraic-graphs] OK: size (torus1 xs ys) == max 1 (3 * length xs * length ys)
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.removeVertex1 ============
912.36 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
912.36 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
912.36 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
912.36 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
912.36 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.removeEdge ============
912.36 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
912.36 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
912.36 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
912.36 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
912.36 s
[algebraic-graphs] OK: size (removeEdge x y z) <= 3 * size z
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.replaceVertex ============
912.36 s
[algebraic-graphs] OK: replaceVertex x x == id
912.36 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
912.36 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
912.36 s
[algebraic-graphs]
912.36 s
[algebraic-graphs] ============ NonEmpty.Graph.mergeVertices ============
912.36 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
918.22 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
918.22 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
918.25 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ NonEmpty.Graph.splitVertex1 ============
918.25 s
[algebraic-graphs] OK: splitVertex1 x [x] == id
918.25 s
[algebraic-graphs] OK: splitVertex1 x [y] == replaceVertex x y
918.25 s
[algebraic-graphs] OK: splitVertex1 1 [0,1] $ 1 * (2 + 3) == (0 + 1) * (2 + 3)
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ NonEmpty.Graph.transpose ============
918.25 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
918.25 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
918.25 s
[algebraic-graphs] OK: transpose . transpose == id
918.25 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
918.25 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ NonEmpty.Graph.induce1 ============
918.25 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
918.25 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
918.25 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
918.25 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ NonEmpty.Graph.induceJust1 ============
918.25 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
918.25 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
918.25 s
[algebraic-graphs] OK: induceJust1 . fmap Just == Just
918.25 s
[algebraic-graphs] OK: induceJust1 . fmap (\x -> if p x then Just x else Nothing) == induce1 p
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ NonEmpty.Graph.simplify ============
918.25 s
[algebraic-graphs] OK: simplify == id
918.25 s
[algebraic-graphs] OK: size (simplify x) <= size x
918.25 s
[algebraic-graphs] OK: simplify 1 === 1
918.25 s
[algebraic-graphs] OK: simplify (1 + 1) === 1
918.25 s
[algebraic-graphs] OK: simplify (1 + 2 + 1) === 1 + 2
918.25 s
[algebraic-graphs] OK: simplify (1 * 1 * 1) === 1 * 1
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsify ============
918.25 s
[algebraic-graphs] OK: sort . reachable x == sort . rights . reachable (sparsify x) . Right
918.25 s
[algebraic-graphs] OK: vertexCount (sparsify x) <= vertexCount x + size x + 1
918.25 s
[algebraic-graphs] OK: edgeCount (sparsify x) <= 3 * size x
918.25 s
[algebraic-graphs] OK: size (sparsify x) <= 3 * size x
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsifyKL ============
918.25 s
[algebraic-graphs] OK: sort . reachable x == sort . filter (<= n) . reachable (sparsifyKL n x)
918.25 s
[algebraic-graphs] OK: length (vertices $ sparsifyKL n x) <= vertexCount x + size x + 1
918.25 s
[algebraic-graphs] OK: length (edges $ sparsifyKL n x) <= 3 * size x
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ NonEmpty.Graph.box ============
918.25 s
[algebraic-graphs] OK: box (path1 [0,1]) (path1 ['a','b']) == <correct result>
918.25 s
[algebraic-graphs] OK: box x y ~~ box y x
918.25 s
[algebraic-graphs] OK: box x (overlay y z) == overlay (box x y) (box x z)
918.25 s
[algebraic-graphs] OK: box x (vertex ()) ~~ x
918.25 s
[algebraic-graphs] OK: box x (box y z) ~~ box (box x y) z
918.25 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
918.25 s
[algebraic-graphs] OK: vertexCount (box x y) == vertexCount x * vertexCount y
918.25 s
[algebraic-graphs] OK: edgeCount (box x y) <= vertexCount x * edgeCount y + edgeCount x * vertexCount y
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ Relation ============
918.25 s
[algebraic-graphs] OK: Axioms of graphs
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ Relation.consistent ============
918.25 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] OK: consistent empty == True
918.25 s
[algebraic-graphs] OK: consistent (vertex x) == True
918.25 s
[algebraic-graphs] OK: consistent (overlay x y) == True
918.25 s
[algebraic-graphs] OK: consistent (connect x y) == True
918.25 s
[algebraic-graphs] OK: consistent (edge x y) == True
918.25 s
[algebraic-graphs] OK: consistent (edges xs) == True
918.25 s
[algebraic-graphs] OK: consistent (stars xs) == True
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] ============ Relation.Show ============
918.25 s
[algebraic-graphs] OK: show (empty ) == "empty"
918.25 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
918.25 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
918.25 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
918.25 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
918.25 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
918.25 s
[algebraic-graphs]
918.25 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
918.25 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
918.26 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
918.26 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
918.26 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.Ord ============
918.26 s
[algebraic-graphs] OK: vertex 1 < vertex 2
918.26 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
918.26 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
918.26 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
918.26 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
918.26 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
918.26 s
[algebraic-graphs] OK: x <= x + y
918.26 s
[algebraic-graphs] OK: x + y <= x * y
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.empty ============
918.26 s
[algebraic-graphs] OK: isEmpty empty == True
918.26 s
[algebraic-graphs] OK: hasVertex x empty == False
918.26 s
[algebraic-graphs] OK: vertexCount empty == 0
918.26 s
[algebraic-graphs] OK: edgeCount empty == 0
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.vertex ============
918.26 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
918.26 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
918.26 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
918.26 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.edge ============
918.26 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
918.26 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
918.26 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
918.26 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
918.26 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.overlay ============
918.26 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
918.26 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
918.26 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
918.26 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
918.26 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
918.26 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
918.26 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
918.26 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.connect ============
918.26 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
918.26 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
918.26 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
918.26 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
918.26 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
918.26 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
918.26 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
918.26 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
918.26 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
918.26 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.vertices ============
918.26 s
[algebraic-graphs] OK: vertices [] == empty
918.26 s
[algebraic-graphs] OK: vertices [x] == vertex x
918.26 s
[algebraic-graphs] OK: vertices == overlays . map vertex
918.26 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
918.26 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
918.26 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.edges ============
918.26 s
[algebraic-graphs] OK: edges [] == empty
918.26 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
918.26 s
[algebraic-graphs] OK: edges == overlays . map (uncurry edge)
918.26 s
[algebraic-graphs] OK: edgeCount . edges == length . nub
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.overlays ============
918.26 s
[algebraic-graphs] OK: overlays [] == empty
918.26 s
[algebraic-graphs] OK: overlays [x] == x
918.26 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
918.26 s
[algebraic-graphs] OK: overlays == foldr overlay empty
918.26 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.connects ============
918.26 s
[algebraic-graphs] OK: connects [] == empty
918.26 s
[algebraic-graphs] OK: connects [x] == x
918.26 s
[algebraic-graphs] OK: connects [x,y] == connect x y
918.26 s
[algebraic-graphs] OK: connects == foldr connect empty
918.26 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.isSubgraphOf ============
918.26 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
918.26 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
918.26 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
918.26 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
918.26 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
918.26 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
918.26 s
[algebraic-graphs]
918.26 s
[algebraic-graphs] ============ Relation.toGraph et al. ============
918.26 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
918.26 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
918.26 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
918.26 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
918.26 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
918.26 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
918.26 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
918.26 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
918.26 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
918.26 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
918.26 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
918.26 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
918.26 s
[algebraic-graphs] OK: edgeSet == Algebra.Graph.AdjacencyMap.edgeSet . foldg empty vertex overlay connect
918.26 s
[algebraic-graphs] OK: preSet x == Algebra.Graph.AdjacencyMap.preSet x . toAdjacencyMap
918.26 s
[algebraic-graphs] OK: preIntSet x == Algebra.Graph.AdjacencyIntMap.preIntSet x . toAdjacencyIntMap
918.26 s
[algebraic-graphs] OK: postSet x == Algebra.Graph.AdjacencyMap.postSet x . toAdjacencyMap
918.26 s
[algebraic-graphs] OK: postIntSet x == Algebra.Graph.AdjacencyIntMap.postIntSet x . toAdjacencyIntMap
921.28 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
921.28 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
921.28 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
921.28 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
921.28 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
921.28 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
921.28 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
921.28 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
921.28 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.foldg ============
921.28 s
[algebraic-graphs] OK: foldg empty vertex overlay connect == id
921.28 s
[algebraic-graphs] OK: foldg empty vertex overlay (flip connect) == transpose
921.28 s
[algebraic-graphs] OK: foldg 1 (const 1) (+) (+) == size
921.28 s
[algebraic-graphs] OK: foldg True (const False) (&&) (&&) == isEmpty
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.isEmpty ============
921.28 s
[algebraic-graphs] OK: isEmpty empty == True
921.28 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
921.28 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
921.28 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
921.28 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.hasVertex ============
921.28 s
[algebraic-graphs] OK: hasVertex x empty == False
921.28 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
921.28 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.hasEdge ============
921.28 s
[algebraic-graphs] OK: hasEdge x y empty == False
921.28 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
921.28 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
921.28 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
921.28 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.vertexCount ============
921.28 s
[algebraic-graphs] OK: vertexCount empty == 0
921.28 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
921.28 s
[algebraic-graphs] OK: vertexCount == length . vertexList
921.28 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.edgeCount ============
921.28 s
[algebraic-graphs] OK: edgeCount empty == 0
921.28 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
921.28 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
921.28 s
[algebraic-graphs] OK: edgeCount == length . edgeList
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.vertexList ============
921.28 s
[algebraic-graphs] OK: vertexList empty == []
921.28 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
921.28 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.vertexSet ============
921.28 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
921.28 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
921.28 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.vertexIntSet ============
921.28 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
921.28 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
921.28 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
921.28 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.edgeList ============
921.28 s
[algebraic-graphs] OK: edgeList empty == []
921.28 s
[algebraic-graphs] OK: edgeList (vertex x) == []
921.28 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
921.28 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
921.28 s
[algebraic-graphs] OK: edgeList . edges == nub . sort
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.edgeSet ============
921.28 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
921.28 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
921.28 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
921.28 s
[algebraic-graphs] OK: edgeSet . edges == Set.fromList
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.adjacencyList ============
921.28 s
[algebraic-graphs] OK: adjacencyList empty == []
921.28 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
921.28 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [])]
921.28 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, []), (2, [1,3]), (3, [])]
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.preSet ============
921.28 s
[algebraic-graphs] OK: preSet x empty == Set.empty
921.28 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
921.28 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
921.28 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.preIntSet ============
921.28 s
[algebraic-graphs] OK: preIntSet x empty == IntSet.empty
921.28 s
[algebraic-graphs] OK: preIntSet x (vertex x) == IntSet.empty
921.28 s
[algebraic-graphs] OK: preIntSet 1 (edge 1 2) == IntSet.empty
921.28 s
[algebraic-graphs] OK: preIntSet y (edge x y) == IntSet.fromList [x]
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.postSet ============
921.28 s
[algebraic-graphs] OK: postSet x empty == Set.empty
921.28 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
921.28 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
921.28 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.postIntSet ============
921.28 s
[algebraic-graphs] OK: postIntSet x empty == IntSet.empty
921.28 s
[algebraic-graphs] OK: postIntSet x (vertex x) == IntSet.empty
921.28 s
[algebraic-graphs] OK: postIntSet 2 (edge 1 2) == IntSet.empty
921.28 s
[algebraic-graphs] OK: postIntSet x (edge x y) == IntSet.fromList [y]
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.path ============
921.28 s
[algebraic-graphs] OK: path [] == empty
921.28 s
[algebraic-graphs] OK: path [x] == vertex x
921.28 s
[algebraic-graphs] OK: path [x,y] == edge x y
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.circuit ============
921.28 s
[algebraic-graphs] OK: circuit [] == empty
921.28 s
[algebraic-graphs] OK: circuit [x] == edge x x
921.28 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.clique ============
921.28 s
[algebraic-graphs] OK: clique [] == empty
921.28 s
[algebraic-graphs] OK: clique [x] == vertex x
921.28 s
[algebraic-graphs] OK: clique [x,y] == edge x y
921.28 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
921.28 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.biclique ============
921.28 s
[algebraic-graphs] OK: biclique [] [] == empty
921.28 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
921.28 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
921.28 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
921.28 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.star ============
921.28 s
[algebraic-graphs] OK: star x [] == vertex x
921.28 s
[algebraic-graphs] OK: star x [y] == edge x y
921.28 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
921.28 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.stars ============
921.28 s
[algebraic-graphs] OK: stars [] == empty
921.28 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
921.28 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
921.28 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
921.28 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
921.28 s
[algebraic-graphs] OK: stars . adjacencyList == id
921.28 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.tree ============
921.28 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
921.28 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
921.28 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
921.28 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.forest ============
921.28 s
[algebraic-graphs] OK: forest [] == empty
921.28 s
[algebraic-graphs] OK: forest [x] == tree x
921.28 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
921.28 s
[algebraic-graphs] OK: forest == overlays . map tree
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.removeVertex ============
921.28 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
921.28 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
921.28 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
921.28 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
921.28 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.removeEdge ============
921.28 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
921.28 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
921.28 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
921.28 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
921.28 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.replaceVertex ============
921.28 s
[algebraic-graphs] OK: replaceVertex x x == id
921.28 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
921.28 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
921.28 s
[algebraic-graphs]
921.28 s
[algebraic-graphs] ============ Relation.mergeVertices ============
921.28 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
941.52 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
941.52 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
941.55 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.transpose ============
941.55 s
[algebraic-graphs] OK: transpose empty == empty
941.55 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
941.55 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
941.55 s
[algebraic-graphs] OK: transpose . transpose == id
941.55 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.gmap ============
941.55 s
[algebraic-graphs] OK: gmap f empty == empty
941.55 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
941.55 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
941.55 s
[algebraic-graphs] OK: gmap id == id
941.55 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.induce ============
941.55 s
[algebraic-graphs] OK: induce (const True ) x == x
941.55 s
[algebraic-graphs] OK: induce (const False) x == empty
941.55 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
941.55 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
941.55 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.compose ============
941.55 s
[algebraic-graphs] OK: compose empty x == empty
941.55 s
[algebraic-graphs] OK: compose x empty == empty
941.55 s
[algebraic-graphs] OK: compose (vertex x) y == empty
941.55 s
[algebraic-graphs] OK: compose x (vertex y) == empty
941.55 s
[algebraic-graphs] OK: compose x (compose y z) == compose (compose x y) z
941.55 s
[algebraic-graphs] OK: compose x (overlay y z) == overlay (compose x y) (compose x z)
941.55 s
[algebraic-graphs] OK: compose (overlay x y) z == overlay (compose x z) (compose y z)
941.55 s
[algebraic-graphs] OK: compose (edge x y) (edge y z) == edge x z
941.55 s
[algebraic-graphs] OK: compose (path [1..5]) (path [1..5]) == edges [(1,3),(2,4),(3,5)]
941.55 s
[algebraic-graphs] OK: compose (circuit [1..5]) (circuit [1..5]) == circuit [1,3,5,2,4]
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.closure ============
941.55 s
[algebraic-graphs] OK: closure empty == empty
941.55 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
941.55 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
941.55 s
[algebraic-graphs] OK: closure (edge x y) == edges [(x,x), (x,y), (y,y)]
941.55 s
[algebraic-graphs] OK: closure (path $ nub xs) == reflexiveClosure (clique $ nub xs)
941.55 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
941.55 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
941.55 s
[algebraic-graphs] OK: closure . closure == closure
941.55 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.reflexiveClosure ============
941.55 s
[algebraic-graphs] OK: reflexiveClosure empty == empty
941.55 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
941.55 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
941.55 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges [(x,x), (x,y), (y,y)]
941.55 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.symmetricClosure ============
941.55 s
[algebraic-graphs] OK: symmetricClosure empty == empty
941.55 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
941.55 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges [(x,y), (y,x)]
941.55 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
941.55 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.transitiveClosure ============
941.55 s
[algebraic-graphs] OK: transitiveClosure empty == empty
941.55 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
941.55 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
941.55 s
[algebraic-graphs] OK: transitiveClosure (path $ nub xs) == clique (nub $ xs)
941.55 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Relation.induceJust ============
941.55 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
941.55 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
941.55 s
[algebraic-graphs] OK: induceJust . gmap Just == id
941.55 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ ReflexiveRelation ============
941.55 s
[algebraic-graphs] OK: Axioms of reflexive graphs
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ TransitiveRelation ============
941.55 s
[algebraic-graphs] OK: Axioms of transitive graphs
941.55 s
[algebraic-graphs] OK: path xs == (clique xs :: TransitiveRelation Int)
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ PreorderRelation ============
941.55 s
[algebraic-graphs] OK: Axioms of preorder graphs
941.55 s
[algebraic-graphs] OK: path xs == (clique xs :: PreorderRelation Int)
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Symmetric.Relation ============
941.55 s
[algebraic-graphs] OK: Axioms of undirected graphs
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Symmetric.Relation.consistent ============
941.55 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] OK: consistent empty == True
941.55 s
[algebraic-graphs] OK: consistent (vertex x) == True
941.55 s
[algebraic-graphs] OK: consistent (overlay x y) == True
941.55 s
[algebraic-graphs] OK: consistent (connect x y) == True
941.55 s
[algebraic-graphs] OK: consistent (edge x y) == True
941.55 s
[algebraic-graphs] OK: consistent (edges xs) == True
941.55 s
[algebraic-graphs] OK: consistent (stars xs) == True
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] ============ Symmetric.Relation.Show ============
941.55 s
[algebraic-graphs] OK: show (empty ) == "empty"
941.55 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
941.55 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
941.55 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
941.55 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
941.55 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
941.55 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
941.55 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
941.55 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
941.55 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
941.55 s
[algebraic-graphs]
941.55 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
941.55 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
941.55 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.toSymmetric ============
941.56 s
[algebraic-graphs] OK: toSymmetric (edge 1 2) == edge 1 2
941.56 s
[algebraic-graphs] OK: toSymmetric . fromSymmetric == id
941.56 s
[algebraic-graphs] OK: fromSymmetric . toSymmetric == symmetricClosure
941.56 s
[algebraic-graphs] OK: vertexCount . toSymmetric == vertexCount
941.56 s
[algebraic-graphs] OK: (*2) . edgeCount . toSymmetric >= edgeCount
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.fromSymmetric ============
941.56 s
[algebraic-graphs] OK: fromSymmetric (edge 1 2) == edges [(1,2), (2,1)]
941.56 s
[algebraic-graphs] OK: vertexCount . fromSymmetric == vertexCount
941.56 s
[algebraic-graphs] OK: edgeCount . fromSymmetric <= (*2) . edgeCount
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.Ord ============
941.56 s
[algebraic-graphs] OK: vertex 1 < vertex 2
941.56 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
941.56 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
941.56 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
941.56 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
941.56 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
941.56 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
941.56 s
[algebraic-graphs] OK: x <= x + y
941.56 s
[algebraic-graphs] OK: x + y <= x * y
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.empty ============
941.56 s
[algebraic-graphs] OK: isEmpty empty == True
941.56 s
[algebraic-graphs] OK: hasVertex x empty == False
941.56 s
[algebraic-graphs] OK: vertexCount empty == 0
941.56 s
[algebraic-graphs] OK: edgeCount empty == 0
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.vertex ============
941.56 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
941.56 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
941.56 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
941.56 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.edge ============
941.56 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
941.56 s
[algebraic-graphs] OK: edge x y == edge y x
941.56 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
941.56 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
941.56 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
941.56 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
941.56 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.overlay ============
941.56 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
941.56 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
941.56 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
941.56 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
941.56 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
941.56 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
941.56 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
941.56 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.connect ============
941.56 s
[algebraic-graphs] OK: connect x y == connect y x
941.56 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
941.56 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
941.56 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
941.56 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
941.56 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
941.56 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
941.56 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
941.56 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
941.56 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
941.56 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.vertices ============
941.56 s
[algebraic-graphs] OK: vertices [] == empty
941.56 s
[algebraic-graphs] OK: vertices [x] == vertex x
941.56 s
[algebraic-graphs] OK: vertices == overlays . map vertex
941.56 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
941.56 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
941.56 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.edges ============
941.56 s
[algebraic-graphs] OK: edges [] == empty
941.56 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
941.56 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
941.56 s
[algebraic-graphs]
941.56 s
[algebraic-graphs] ============ Symmetric.Relation.overlays ============
941.56 s
[algebraic-graphs] OK: overlays [] == empty
951.86 s
[algebraic-graphs] OK: overlays [x] == x
951.90 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
951.90 s
[algebraic-graphs] OK: overlays == foldr overlay empty
951.90 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.connects ============
951.90 s
[algebraic-graphs] OK: connects [] == empty
951.90 s
[algebraic-graphs] OK: connects [x] == x
951.90 s
[algebraic-graphs] OK: connects [x,y] == connect x y
951.90 s
[algebraic-graphs] OK: connects == foldr connect empty
951.90 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
951.90 s
[algebraic-graphs] OK: connects == connects . reverse
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.isSubgraphOf ============
951.90 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
951.90 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
951.90 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
951.90 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
951.90 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
951.90 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
951.90 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.toGraph et al. ============
951.90 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
951.90 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
951.90 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
951.90 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
951.90 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
951.90 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
951.90 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
951.90 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
951.90 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
951.90 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
951.90 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
951.90 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
951.90 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
951.90 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
951.90 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
951.90 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
951.90 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
951.90 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
951.90 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
951.90 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
951.90 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.isEmpty ============
951.90 s
[algebraic-graphs] OK: isEmpty empty == True
951.90 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
951.90 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
951.90 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
951.90 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.hasVertex ============
951.90 s
[algebraic-graphs] OK: hasVertex x empty == False
951.90 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
951.90 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.hasEdge ============
951.90 s
[algebraic-graphs] OK: hasEdge x y empty == False
951.90 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
951.90 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
951.90 s
[algebraic-graphs] OK: hasEdge x y (edge y x) == True
951.90 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
951.90 s
[algebraic-graphs] OK: hasEdge x y == elem (min x y, max x y) . edgeList
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.vertexCount ============
951.90 s
[algebraic-graphs] OK: vertexCount empty == 0
951.90 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
951.90 s
[algebraic-graphs] OK: vertexCount == length . vertexList
951.90 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.edgeCount ============
951.90 s
[algebraic-graphs] OK: edgeCount empty == 0
951.90 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
951.90 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
951.90 s
[algebraic-graphs] OK: edgeCount == length . edgeList
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.vertexList ============
951.90 s
[algebraic-graphs] OK: vertexList empty == []
951.90 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
951.90 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.vertexSet ============
951.90 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
951.90 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
951.90 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.vertexIntSet ============
951.90 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
951.90 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
951.90 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
951.90 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.edgeList ============
951.90 s
[algebraic-graphs] OK: edgeList empty == []
951.90 s
[algebraic-graphs] OK: edgeList (vertex x) == []
951.90 s
[algebraic-graphs] OK: edgeList (edge x y) == [(min x y, max y x)]
951.90 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(1,2), (2,3)]
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.edgeSet ============
951.90 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
951.90 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
951.90 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (min x y, max x y)
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.adjacencyList ============
951.90 s
[algebraic-graphs] OK: adjacencyList empty == []
951.90 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
951.90 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [1])]
951.90 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, [2]), (2, [1,3]), (3, [2])]
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.neighbours ============
951.90 s
[algebraic-graphs] OK: neighbours x empty == Set.empty
951.90 s
[algebraic-graphs] OK: neighbours x (vertex x) == Set.empty
951.90 s
[algebraic-graphs] OK: neighbours x (edge x y) == Set.fromList [y]
951.90 s
[algebraic-graphs] OK: neighbours y (edge x y) == Set.fromList [x]
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.path ============
951.90 s
[algebraic-graphs] OK: path [] == empty
951.90 s
[algebraic-graphs] OK: path [x] == vertex x
951.90 s
[algebraic-graphs] OK: path [x,y] == edge x y
951.90 s
[algebraic-graphs] OK: path == path . reverse
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.circuit ============
951.90 s
[algebraic-graphs] OK: circuit [] == empty
951.90 s
[algebraic-graphs] OK: circuit [x] == edge x x
951.90 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
951.90 s
[algebraic-graphs] OK: circuit == circuit . reverse
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.clique ============
951.90 s
[algebraic-graphs] OK: clique [] == empty
951.90 s
[algebraic-graphs] OK: clique [x] == vertex x
951.90 s
[algebraic-graphs] OK: clique [x,y] == edge x y
951.90 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
951.90 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
951.90 s
[algebraic-graphs] OK: clique == clique . reverse
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.biclique ============
951.90 s
[algebraic-graphs] OK: biclique [] [] == empty
951.90 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
951.90 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
951.90 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
951.90 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.star ============
951.90 s
[algebraic-graphs] OK: star x [] == vertex x
951.90 s
[algebraic-graphs] OK: star x [y] == edge x y
951.90 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
951.90 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
951.90 s
[algebraic-graphs]
951.90 s
[algebraic-graphs] ============ Symmetric.Relation.stars ============
951.90 s
[algebraic-graphs] OK: stars [] == empty
951.90 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
951.90 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
951.90 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
951.90 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
951.90 s
[algebraic-graphs] OK: stars . adjacencyList == id
951.91 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
951.91 s
[algebraic-graphs]
951.91 s
[algebraic-graphs] ============ Symmetric.Relation.tree ============
951.91 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
951.91 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
951.91 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
951.91 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
951.91 s
[algebraic-graphs]
951.91 s
[algebraic-graphs] ============ Symmetric.Relation.forest ============
951.91 s
[algebraic-graphs] OK: forest [] == empty
958.47 s
[algebraic-graphs] OK: forest [x] == tree x
958.47 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
958.51 s
[algebraic-graphs] OK: forest == overlays . map tree
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Symmetric.Relation.removeVertex ============
958.51 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
958.51 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
958.51 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
958.51 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
958.51 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Symmetric.Relation.removeEdge ============
958.51 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
958.51 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
958.51 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
958.51 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
958.51 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
958.51 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Symmetric.Relation.replaceVertex ============
958.51 s
[algebraic-graphs] OK: replaceVertex x x == id
958.51 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
958.51 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Symmetric.Relation.mergeVertices ============
958.51 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
958.51 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
958.51 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
958.51 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Symmetric.Relation.gmap ============
958.51 s
[algebraic-graphs] OK: gmap f empty == empty
958.51 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
958.51 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
958.51 s
[algebraic-graphs] OK: gmap id == id
958.51 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Symmetric.Relation.induce ============
958.51 s
[algebraic-graphs] OK: induce (const True ) x == x
958.51 s
[algebraic-graphs] OK: induce (const False) x == empty
958.51 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
958.51 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
958.51 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Symmetric.Relation.induceJust ============
958.51 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
958.51 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
958.51 s
[algebraic-graphs] OK: induceJust . gmap Just == id
958.51 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Example.Todo (Holiday) ============
958.51 s
[algebraic-graphs] OK: A todo list is semantically Maybe [a]
958.51 s
[algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
958.51 s
[algebraic-graphs] OK: The connect operator (*) adds dependency between items
958.51 s
[algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
958.51 s
[algebraic-graphs] OK: Introduce item priority to schedule the todo list
958.51 s
[algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Example.Todo (Commandline) ============
958.51 s
[algebraic-graphs] OK: The pull connect operator maintains command line semantics
958.51 s
[algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
958.51 s
[algebraic-graphs] OK: The usual connect operator breaks semantics
958.51 s
[algebraic-graphs] OK: Transform command lines by adding optimisation flag
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Typed ============
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Typed.fromAdjacencyMap ============
958.51 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
958.51 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
958.51 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
958.51 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
958.51 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
958.51 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
958.51 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
958.51 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Typed.dfsForest ============
958.51 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
958.51 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
958.51 s
[algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
958.51 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
958.51 s
[algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
958.51 s
[algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
958.51 s
[algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
958.51 s
[algebraic-graphs]
958.51 s
[algebraic-graphs] ============ Typed.dfsForestFrom ============
958.51 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
958.51 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
958.51 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
958.51 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
958.51 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
958.52 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
958.52 s
[algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
958.52 s
[algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
958.52 s
[algebraic-graphs] OK: dfsForestFrom % x $ [] == []
958.52 s
[algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Typed.dfs ============
958.52 s
[algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
958.52 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
958.52 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
958.52 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
958.52 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
958.52 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
958.52 s
[algebraic-graphs] OK: dfs % x $ [] == []
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
958.52 s
[algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Typed.topSort ============
958.52 s
[algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
958.52 s
[algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected ============
958.52 s
[algebraic-graphs] OK: Axioms of undirected graphs
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected.Show ============
958.52 s
[algebraic-graphs] OK: show (empty ) == "empty"
958.52 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
958.52 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
958.52 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
958.52 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
958.52 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
958.52 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
958.52 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
958.52 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
958.52 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
958.52 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
958.52 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected.toUndirected ============
958.52 s
[algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
958.52 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
958.52 s
[algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
958.52 s
[algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
958.52 s
[algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
958.52 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
958.52 s
[algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
958.52 s
[algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected.complement ================
958.52 s
[algebraic-graphs] OK: complement empty == empty
958.52 s
[algebraic-graphs] OK: complement (vertex x) == vertex x
958.52 s
[algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
958.52 s
[algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
958.52 s
[algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
958.52 s
[algebraic-graphs] OK: complement . complement == id
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected.Ord ============
958.52 s
[algebraic-graphs] OK: vertex 1 < vertex 2
958.52 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
958.52 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
958.52 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
958.52 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
958.52 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
958.52 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
958.52 s
[algebraic-graphs] OK: x <= x + y
958.52 s
[algebraic-graphs] OK: x + y <= x * y
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected.empty ============
958.52 s
[algebraic-graphs] OK: isEmpty empty == True
958.52 s
[algebraic-graphs] OK: hasVertex x empty == False
958.52 s
[algebraic-graphs] OK: vertexCount empty == 0
958.52 s
[algebraic-graphs] OK: edgeCount empty == 0
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected.vertex ============
958.52 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
958.52 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
958.52 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
958.52 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
958.52 s
[algebraic-graphs]
958.52 s
[algebraic-graphs] ============ Graph.Undirected.edge ============
958.52 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
958.52 s
[algebraic-graphs] OK: edge x y == edge y x
968.24 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
968.24 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
968.24 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
968.44 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
968.44 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.overlay ============
968.44 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
968.44 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
968.44 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
968.44 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
968.44 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
968.44 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
968.44 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
968.44 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.connect ============
968.44 s
[algebraic-graphs] OK: connect x y == connect y x
968.44 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
968.44 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
968.44 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
968.44 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
968.44 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
968.44 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
968.44 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
968.44 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
968.44 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
968.44 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.vertices ============
968.44 s
[algebraic-graphs] OK: vertices [] == empty
968.44 s
[algebraic-graphs] OK: vertices [x] == vertex x
968.44 s
[algebraic-graphs] OK: vertices == overlays . map vertex
968.44 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
968.44 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
968.44 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.edges ============
968.44 s
[algebraic-graphs] OK: edges [] == empty
968.44 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
968.44 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.overlays ============
968.44 s
[algebraic-graphs] OK: overlays [] == empty
968.44 s
[algebraic-graphs] OK: overlays [x] == x
968.44 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
968.44 s
[algebraic-graphs] OK: overlays == foldr overlay empty
968.44 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.connects ============
968.44 s
[algebraic-graphs] OK: connects [] == empty
968.44 s
[algebraic-graphs] OK: connects [x] == x
968.44 s
[algebraic-graphs] OK: connects [x,y] == connect x y
968.44 s
[algebraic-graphs] OK: connects == foldr connect empty
968.44 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
968.44 s
[algebraic-graphs] OK: connects == connects . reverse
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
968.44 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
968.44 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
968.44 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
968.44 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
968.44 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
968.44 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
968.44 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.path ============
968.44 s
[algebraic-graphs] OK: path [] == empty
968.44 s
[algebraic-graphs] OK: path [x] == vertex x
968.44 s
[algebraic-graphs] OK: path [x,y] == edge x y
968.44 s
[algebraic-graphs] OK: path == path . reverse
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.circuit ============
968.44 s
[algebraic-graphs] OK: circuit [] == empty
968.44 s
[algebraic-graphs] OK: circuit [x] == edge x x
968.44 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
968.44 s
[algebraic-graphs] OK: circuit == circuit . reverse
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.clique ============
968.44 s
[algebraic-graphs] OK: clique [] == empty
968.44 s
[algebraic-graphs] OK: clique [x] == vertex x
968.44 s
[algebraic-graphs] OK: clique [x,y] == edge x y
968.44 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
968.44 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
968.44 s
[algebraic-graphs] OK: clique == clique . reverse
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.biclique ============
968.44 s
[algebraic-graphs] OK: biclique [] [] == empty
968.44 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
968.44 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
968.44 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
968.44 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.star ============
968.44 s
[algebraic-graphs] OK: star x [] == vertex x
968.44 s
[algebraic-graphs] OK: star x [y] == edge x y
968.44 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
968.44 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.stars ============
968.44 s
[algebraic-graphs] OK: stars [] == empty
968.44 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
968.44 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
968.44 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
968.44 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
968.44 s
[algebraic-graphs] OK: stars . adjacencyList == id
968.44 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.tree ============
968.44 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
968.44 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
968.44 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
968.44 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.forest ============
968.44 s
[algebraic-graphs] OK: forest [] == empty
968.44 s
[algebraic-graphs] OK: forest [x] == tree x
968.44 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
968.44 s
[algebraic-graphs] OK: forest == overlays . map tree
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.removeVertex ============
968.44 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
968.44 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
968.44 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
968.44 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
968.44 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.removeEdge ============
968.44 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
968.44 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
968.44 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
968.44 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
968.44 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
968.44 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
968.44 s
[algebraic-graphs] OK: replaceVertex x x == id
968.44 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
968.44 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
968.44 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
968.44 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
968.44 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
968.44 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.gmap ============
968.44 s
[algebraic-graphs] OK: gmap f empty == empty
968.44 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
968.44 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
968.44 s
[algebraic-graphs] OK: gmap id == id
968.44 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.induce ============
968.44 s
[algebraic-graphs] OK: induce (const True ) x == x
968.44 s
[algebraic-graphs] OK: induce (const False) x == empty
968.44 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
968.44 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
968.44 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
968.44 s
[algebraic-graphs]
968.44 s
[algebraic-graphs] ============ Graph.Undirected.induceJust ============
968.44 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
968.44 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
968.44 s
[algebraic-graphs] OK: induceJust . gmap Just == id
968.44 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
968.44 s
[algebraic-graphs] Test suite main: PASS
968.44 s
[algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
968.44 s
[algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
968.44 s
[algebraic-graphs] checkPhase completed in 1 minutes 48 seconds
968.44 s
[algebraic-graphs] Phase: haddockPhase
968.44 s
[algebraic-graphs] Preprocessing library for algebraic-graphs-0.7..
968.44 s
[algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7..
968.47 s
[algebraic-graphs] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
968.80 s
[algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
969.00 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
969.07 s
[algebraic-graphs] Warning: 'nub' is out of scope.
969.07 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.07 s
[algebraic-graphs] Warning: 'sort' is out of scope.
969.07 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.08 s
[algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
969.08 s
[algebraic-graphs] Missing documentation for:
969.08 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
969.11 s
[algebraic-graphs] Warning: 'IsList' is out of scope.
969.11 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.12 s
[algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
969.40 s
[algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
969.58 s
[algebraic-graphs] Warning: 'mplus' is out of scope.
969.58 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.59 s
[algebraic-graphs] Warning: 'vertexCount' is out of scope.
969.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.59 s
[algebraic-graphs] Warning: 'hasVertex' is out of scope.
969.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.59 s
[algebraic-graphs] Warning: 'vertexSet' is out of scope.
969.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.59 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
969.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.59 s
[algebraic-graphs] Warning: 'edgeList' is out of scope.
969.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.59 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
969.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.59 s
[algebraic-graphs] Warning: 'box' is out of scope.
969.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.60 s
[algebraic-graphs] Warning: 'edgeCount' is out of scope.
969.60 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.60 s
[algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
969.71 s
[algebraic-graphs] Warning: 'nub' is out of scope.
969.71 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
969.73 s
[algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
970.26 s
[algebraic-graphs] Warning: 'isRight' is out of scope.
970.26 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.27 s
[algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
970.41 s
[algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
970.58 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
970.58 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.58 s
[algebraic-graphs] Warning: 'empty' is out of scope.
970.58 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.58 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
970.58 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.58 s
[algebraic-graphs] Warning: 'edges' is out of scope.
970.58 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.59 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
970.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.59 s
[algebraic-graphs] Warning: 'stars' is out of scope.
970.59 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.59 s
[algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
970.68 s
[algebraic-graphs] Warning: 'nub' is out of scope.
970.68 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.68 s
[algebraic-graphs] Warning: 'sort' is out of scope.
970.68 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
970.68 s
[algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
970.68 s
[algebraic-graphs] Missing documentation for:
970.68 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
970.96 s
[algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
971.04 s
[algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
971.09 s
[algebraic-graphs]
971.15 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.15 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.15 s
[algebraic-graphs] will become an error in a future GHC release.
971.15 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.15 s
[algebraic-graphs] |
971.15 s
[algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
971.15 s
[algebraic-graphs] | ^
971.15 s
[algebraic-graphs]
971.15 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.15 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.15 s
[algebraic-graphs] will become an error in a future GHC release.
971.15 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.15 s
[algebraic-graphs] |
971.15 s
[algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
971.15 s
[algebraic-graphs] | ^
971.15 s
[algebraic-graphs]
971.15 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.15 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.15 s
[algebraic-graphs] will become an error in a future GHC release.
971.15 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.15 s
[algebraic-graphs] |
971.15 s
[algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
971.15 s
[algebraic-graphs] | ^
971.15 s
[algebraic-graphs]
971.15 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.15 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.15 s
[algebraic-graphs] will become an error in a future GHC release.
971.15 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.15 s
[algebraic-graphs] |
971.15 s
[algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
971.15 s
[algebraic-graphs] | ^
971.15 s
[algebraic-graphs]
971.16 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.16 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.16 s
[algebraic-graphs] will become an error in a future GHC release.
971.16 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.16 s
[algebraic-graphs] |
971.16 s
[algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
971.16 s
[algebraic-graphs] | ^
971.16 s
[algebraic-graphs]
971.16 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.16 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.16 s
[algebraic-graphs] will become an error in a future GHC release.
971.16 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.16 s
[algebraic-graphs] |
971.16 s
[algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
971.16 s
[algebraic-graphs] | ^
971.16 s
[algebraic-graphs]
971.16 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.16 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.16 s
[algebraic-graphs] will become an error in a future GHC release.
971.16 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.16 s
[algebraic-graphs] |
971.16 s
[algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
971.16 s
[algebraic-graphs] | ^
971.21 s
[algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
971.21 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
971.22 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
971.31 s
[algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
971.41 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
971.41 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
971.42 s
[algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
971.62 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
971.80 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
971.87 s
[algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
971.88 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
971.90 s
[algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
971.91 s
[algebraic-graphs]
971.91 s
[algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.91 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.91 s
[algebraic-graphs] will become an error in a future GHC release.
971.91 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.91 s
[algebraic-graphs] |
971.91 s
[algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
971.91 s
[algebraic-graphs] | ^
971.92 s
[algebraic-graphs] Warning: 'Graph' is out of scope.
971.92 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
971.92 s
[algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
971.93 s
[algebraic-graphs]
971.93 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.93 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.93 s
[algebraic-graphs] will become an error in a future GHC release.
971.93 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.93 s
[algebraic-graphs] |
971.93 s
[algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
971.93 s
[algebraic-graphs] | ^
971.93 s
[algebraic-graphs]
971.93 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
971.93 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
971.93 s
[algebraic-graphs] will become an error in a future GHC release.
971.93 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
971.93 s
[algebraic-graphs] |
971.93 s
[algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
971.93 s
[algebraic-graphs] | ^
971.97 s
[algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
972.11 s
[algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
972.14 s
[algebraic-graphs] Warning: 'Transitive' is out of scope.
972.14 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
972.14 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
972.15 s
[algebraic-graphs] Warning: 'Reflexive' is out of scope.
972.15 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
972.16 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
972.17 s
[algebraic-graphs] Warning: 'Preorder' is out of scope.
972.17 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
972.17 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
972.18 s
[algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
972.18 s
[algebraic-graphs] Missing documentation for:
972.18 s
[algebraic-graphs] Module header
972.18 s
[algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
972.18 s
[algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:41)
972.18 s
[algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:22)
972.18 s
[algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:26)
972.18 s
[algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:34)
972.18 s
[algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:38)
972.18 s
[algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:30)
972.19 s
[algebraic-graphs] Warning: 'array' is out of scope.
972.19 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
972.20 s
[algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
972.20 s
[algebraic-graphs] Missing documentation for:
972.20 s
[algebraic-graphs] scc (src/Data/Graph/Typed.hs:191)
976.95 s
[algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs/,
976.95 s
[algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
977.04 s
[algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7..
977.04 s
[algebraic-graphs] Phase: installPhase
977.09 s
[algebraic-graphs] Installing library in /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7/lib/ghc-9.6.7/lib/x86_64-linux-ghc-9.6.7/algebraic-graphs-0.7-DAzqSe4OEaY2UL8NUkdChE
977.91 s
[algebraic-graphs] Phase: fixupPhase
977.93 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7
977.94 s
[algebraic-graphs] shrinking /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7/lib/ghc-9.6.7/lib/x86_64-linux-ghc-9.6.7/libHSalgebraic-graphs-0.7-DAzqSe4OEaY2UL8NUkdChE-ghc9.6.7.so
977.95 s
[algebraic-graphs] checking for references to /build/ in /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7...
977.99 s
[algebraic-graphs] patching script interpreter paths in /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7
978.00 s
[algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7/lib
978.29 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/fzswxhazq1h53lb7a661wgwcpps3n75x-algebraic-graphs-0.7-doc
978.31 s
[algebraic-graphs] checking for references to /build/ in /nix/store/fzswxhazq1h53lb7a661wgwcpps3n75x-algebraic-graphs-0.7-doc...
978.35 s
[algebraic-graphs] patching script interpreter paths in /nix/store/fzswxhazq1h53lb7a661wgwcpps3n75x-algebraic-graphs-0.7-doc
978.59 s
[algebraic-graphs:post-build] Uploading to cachix cache "sellout": /nix/store/fzswxhazq1h53lb7a661wgwcpps3n75x-algebraic-graphs-0.7-doc /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7
979.18 s
[algebraic-graphs:post-build] Pushing 2 paths (70 are already present) using zstd to cache sellout ⏳
979.18 s
[algebraic-graphs:post-build]
979.54 s
[algebraic-graphs:post-build] Pushing /nix/store/fzswxhazq1h53lb7a661wgwcpps3n75x-algebraic-graphs-0.7-doc (10.39 MiB)
979.65 s
[algebraic-graphs:post-build] Pushing /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7 (24.32 MiB)
981.46 s
[algebraic-graphs:post-build]
981.46 s
[algebraic-graphs:post-build] All done.
981.48 s
[algebraic-graphs:post-build] Uploading to the NixCI cache: /nix/store/fzswxhazq1h53lb7a661wgwcpps3n75x-algebraic-graphs-0.7-doc /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7
981.52 s
[algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
981.76 s
[algebraic-graphs:post-build] copying 2 paths...
981.76 s
[algebraic-graphs:post-build] copying path '/nix/store/fzswxhazq1h53lb7a661wgwcpps3n75x-algebraic-graphs-0.7-doc' to 'https://cache.nix-ci.com'...
983.08 s
[algebraic-graphs:post-build] copying path '/nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
989.30 s
[algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
989.55 s
[algebraic-graphs:post-build] copying 1 paths...
989.58 s
[algebraic-graphs:post-build] copying path '/nix/store/5mjvdf48pmvcbc8jll342q9vilpiv5lj-algebraic-graphs-0.7.drv' to 'https://cache.nix-ci.com'...
989.78 s
Progress: 14 of 19 built, 73 of 73 downloaded from cache
989.84 s
Building /nix/store/hjisvv3ql6846hgj9ik99qbrqh7z51zw-algebraic-graph-duoids-0.0.1.0.drv
990.01 s
[algebraic-graph-duoids] Phase: setupCompilerEnvironmentPhase
990.10 s
[algebraic-graph-duoids] Build with /nix/store/da9x1n5l146q0ai9wz8zfbx4zfwa9b02-ghc-9.6.7.
990.33 s
[algebraic-graph-duoids] Phase: unpackPhase
990.33 s
[algebraic-graph-duoids] unpacking source archive /nix/store/j3nhvvhbp8d5l29mqdaf8f513lxyga6r-z8smrhvl4j2a1x1vb5nv502a87a6wsx7-source/./algebraic-graphs
990.34 s
[algebraic-graph-duoids] source root is algebraic-graphs
990.35 s
[algebraic-graph-duoids] Phase: patchPhase
990.38 s
[algebraic-graph-duoids] Phase: compileBuildDriverPhase
990.39 s
[algebraic-graph-duoids] setupCompileFlags: -package-db=/build/tmp.8IDw0XcXjO/setup-package.conf.d -threaded
990.44 s
[algebraic-graph-duoids] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.8IDw0XcXjO/Main.o )
990.51 s
[algebraic-graph-duoids] [2 of 2] Linking Setup
991.82 s
[algebraic-graph-duoids] Phase: updateAutotoolsGnuConfigScriptsPhase
991.83 s
[algebraic-graph-duoids] Phase: configurePhase
991.84 s
[algebraic-graph-duoids] configureFlags: --verbose --prefix=/nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0 --with-gcc=gcc --package-db=/build/tmp.8IDw0XcXjO/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-option=-haddock --ghc-options=-Werror --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib --extra-lib-dirs=/nix/store/da9x1n5l146q0ai9wz8zfbx4zfwa9b02-ghc-9.6.7/lib
991.85 s
[algebraic-graph-duoids] Using Parsec parser
991.85 s
[algebraic-graph-duoids] Configuring algebraic-graph-duoids-0.0.1.0...
992.17 s
[algebraic-graph-duoids] Flags chosen: lint=False, noisy-deprecations=True
992.51 s
[algebraic-graph-duoids] Dependency algebraic-graphs >=0.5 && <0.6 || >=0.6.1 && <0.9: using
992.51 s
[algebraic-graph-duoids] algebraic-graphs-0.7
992.51 s
[algebraic-graph-duoids] Dependency base >=4.16.0 && <4.17 || >=4.17.0 && <4.18 || >=4.18.0 && <4.19 ||
992.51 s
[algebraic-graph-duoids] >=4.19.0 && <4.20 || >=4.20.0 && <4.21 || >=4.21.0 && <4.22 || >=4.22.0 &&
992.51 s
[algebraic-graph-duoids] <4.23: using base-4.18.3.0
992.51 s
[algebraic-graph-duoids] Dependency duoids >=0.0.1 && <0.1: using duoids-0.0.1.0
992.51 s
[algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
992.51 s
[algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
992.51 s
[algebraic-graph-duoids] Dependency algebraic-graphs >=0.5 && <0.6 || >=0.6.1 && <0.9: using
992.51 s
[algebraic-graph-duoids] algebraic-graphs-0.7
992.51 s
[algebraic-graph-duoids] Dependency base >=4.16.0 && <4.17 || >=4.17.0 && <4.18 || >=4.18.0 && <4.19 ||
992.51 s
[algebraic-graph-duoids] >=4.19.0 && <4.20 || >=4.20.0 && <4.21 || >=4.21.0 && <4.22 || >=4.22.0 &&
992.51 s
[algebraic-graph-duoids] <4.23: using base-4.18.3.0
992.51 s
[algebraic-graph-duoids] Dependency duoids-hedgehog >=0.0.1 && <0.1: using duoids-hedgehog-0.0.1.0
992.51 s
[algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
992.51 s
[algebraic-graph-duoids] Dependency hedgehog >=1.1 && <1.3 || >=1.4 && <1.6 || >=1.7 && <1.8: using
992.51 s
[algebraic-graph-duoids] hedgehog-1.5
992.51 s
[algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
992.51 s
[algebraic-graph-duoids] Dependency base >=4.16.0 && <4.17 || >=4.17.0 && <4.18 || >=4.18.0 && <4.19 ||
992.51 s
[algebraic-graph-duoids] >=4.19.0 && <4.20 || >=4.20.0 && <4.21 || >=4.21.0 && <4.22 || >=4.22.0 &&
992.51 s
[algebraic-graph-duoids] <4.23: using base-4.18.3.0
992.51 s
[algebraic-graph-duoids] Dependency doctest >=0.18.2 && <0.19 || >=0.20.1 && <0.21 || >=0.21.1 && <0.22
992.51 s
[algebraic-graph-duoids] || >=0.22.6 && <0.23 || >=0.24.0 && <0.25 || >=0.25.0 && <0.26: using
992.51 s
[algebraic-graph-duoids] doctest-0.24.2
992.51 s
[algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
992.51 s
[algebraic-graph-duoids] Source component graph:
992.51 s
[algebraic-graph-duoids] component lib
992.51 s
[algebraic-graph-duoids] component test:doctests dependency lib
992.51 s
[algebraic-graph-duoids] component test:laws dependency lib
992.51 s
[algebraic-graph-duoids] Configured component graph:
992.51 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-DAzqSe4OEaY2UL8NUkdChE
992.51 s
[algebraic-graph-duoids] include base-4.18.3.0
992.51 s
[algebraic-graph-duoids] include duoids-0.0.1.0-105u05r7TW2MRcOyPjMls
992.51 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-836q6BQ7de51JpogUxLpsp-doctests
992.51 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] include base-4.18.3.0
992.51 s
[algebraic-graph-duoids] include doctest-0.24.2-7YxPr6lrdwiBMDK2pmizgF
992.51 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-3oelAbmlCIOKzguWsvhbMK-laws
992.51 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-DAzqSe4OEaY2UL8NUkdChE
992.51 s
[algebraic-graph-duoids] include base-4.18.3.0
992.51 s
[algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-DcWZsdLJfX5DhetPN5Zjfn
992.51 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] include hedgehog-1.5-DP7FfOYhHT521r6KmG2jIn
992.51 s
[algebraic-graph-duoids] Linked component graph:
992.51 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-DAzqSe4OEaY2UL8NUkdChE
992.51 s
[algebraic-graph-duoids] include base-4.18.3.0
992.51 s
[algebraic-graph-duoids] include duoids-0.0.1.0-105u05r7TW2MRcOyPjMls
992.51 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] Algebra.Graph.Duoid=algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2:Algebra.Graph.Duoid,Algebra.Graph.Duoid.Orphans=algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2:Algebra.Graph.Duoid.Orphans
992.51 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-836q6BQ7de51JpogUxLpsp-doctests
992.51 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] include base-4.18.3.0
992.51 s
[algebraic-graph-duoids] include doctest-0.24.2-7YxPr6lrdwiBMDK2pmizgF
992.51 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-3oelAbmlCIOKzguWsvhbMK-laws
992.51 s
[algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] include algebraic-graphs-0.7-DAzqSe4OEaY2UL8NUkdChE
992.51 s
[algebraic-graph-duoids] include base-4.18.3.0
992.51 s
[algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-DcWZsdLJfX5DhetPN5Zjfn
992.51 s
[algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] include hedgehog-1.5-DP7FfOYhHT521r6KmG2jIn
992.51 s
[algebraic-graph-duoids] Ready component graph:
992.51 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] depends algebraic-graphs-0.7-DAzqSe4OEaY2UL8NUkdChE
992.51 s
[algebraic-graph-duoids] depends base-4.18.3.0
992.51 s
[algebraic-graph-duoids] depends duoids-0.0.1.0-105u05r7TW2MRcOyPjMls
992.51 s
[algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-836q6BQ7de51JpogUxLpsp-doctests
992.51 s
[algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] depends base-4.18.3.0
992.51 s
[algebraic-graph-duoids] depends doctest-0.24.2-7YxPr6lrdwiBMDK2pmizgF
992.51 s
[algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-3oelAbmlCIOKzguWsvhbMK-laws
992.51 s
[algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] depends algebraic-graphs-0.7-DAzqSe4OEaY2UL8NUkdChE
992.51 s
[algebraic-graph-duoids] depends base-4.18.3.0
992.51 s
[algebraic-graph-duoids] depends duoids-hedgehog-0.0.1.0-DcWZsdLJfX5DhetPN5Zjfn
992.51 s
[algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-6wKNTt5WLLQByK2Br4PYfC
992.51 s
[algebraic-graph-duoids] depends hedgehog-1.5-DP7FfOYhHT521r6KmG2jIn
992.51 s
[algebraic-graph-duoids] Using Cabal-3.12.1.0 compiled by ghc-9.6
992.51 s
[algebraic-graph-duoids] Using compiler: ghc-9.6.7
992.51 s
[algebraic-graph-duoids] Using install prefix:
992.51 s
[algebraic-graph-duoids] /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0
992.51 s
[algebraic-graph-duoids] Executables installed in:
992.51 s
[algebraic-graph-duoids] /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/bin
992.51 s
[algebraic-graph-duoids] Libraries installed in:
992.51 s
[algebraic-graph-duoids] /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.6.7/lib/x86_64-linux-ghc-9.6.7/algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
992.51 s
[algebraic-graph-duoids] Dynamic Libraries installed in:
992.51 s
[algebraic-graph-duoids] /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.6.7/lib/x86_64-linux-ghc-9.6.7
992.51 s
[algebraic-graph-duoids] Private executables installed in:
992.51 s
[algebraic-graph-duoids] /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/libexec/x86_64-linux-ghc-9.6.7/algebraic-graph-duoids-0.0.1.0
992.51 s
[algebraic-graph-duoids] Data files installed in:
992.51 s
[algebraic-graph-duoids] /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/share/x86_64-linux-ghc-9.6.7/algebraic-graph-duoids-0.0.1.0
992.51 s
[algebraic-graph-duoids] Documentation installed in:
992.51 s
[algebraic-graph-duoids] /nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0
992.51 s
[algebraic-graph-duoids] Configuration files installed in:
992.51 s
[algebraic-graph-duoids] /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/etc
992.51 s
[algebraic-graph-duoids] No alex found
992.51 s
[algebraic-graph-duoids] Using ar found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
992.51 s
[algebraic-graph-duoids] No c2hs found
992.51 s
[algebraic-graph-duoids] No cpphs found
992.51 s
[algebraic-graph-duoids] Using doctest version 0.24.2 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/m3h55v6hp7pfchbn3d61214yzlr937a9-doctest-0.24.2/bin/doctest
992.51 s
[algebraic-graph-duoids] Using gcc version 14.3.0 given by user at:
992.51 s
[algebraic-graph-duoids] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
992.51 s
[algebraic-graph-duoids] Using ghc version 9.6.7 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/da9x1n5l146q0ai9wz8zfbx4zfwa9b02-ghc-9.6.7/bin/ghc
992.51 s
[algebraic-graph-duoids] Using ghc-pkg version 9.6.7 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/da9x1n5l146q0ai9wz8zfbx4zfwa9b02-ghc-9.6.7/bin/ghc-pkg-9.6.7
992.51 s
[algebraic-graph-duoids] No ghcjs found
992.51 s
[algebraic-graph-duoids] No ghcjs-pkg found
992.51 s
[algebraic-graph-duoids] No greencard found
992.51 s
[algebraic-graph-duoids] Using haddock version 2.29.2 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/da9x1n5l146q0ai9wz8zfbx4zfwa9b02-ghc-9.6.7/bin/haddock-ghc-9.6.7
992.51 s
[algebraic-graph-duoids] No happy found
992.51 s
[algebraic-graph-duoids] Using haskell-suite found on system at: haskell-suite-dummy-location
992.51 s
[algebraic-graph-duoids] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
992.51 s
[algebraic-graph-duoids] No hmake found
992.51 s
[algebraic-graph-duoids] Using hpc version 0.68 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/da9x1n5l146q0ai9wz8zfbx4zfwa9b02-ghc-9.6.7/bin/hpc-ghc-9.6.7
992.51 s
[algebraic-graph-duoids] Using hsc2hs version 0.68.9 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/da9x1n5l146q0ai9wz8zfbx4zfwa9b02-ghc-9.6.7/bin/hsc2hs-ghc-9.6.7
992.51 s
[algebraic-graph-duoids] Using hscolour version 1.25 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/7ffc07q75k5a6zk864jv9gpiphhwzjlh-hscolour-1.25/bin/HsColour
992.51 s
[algebraic-graph-duoids] No jhc found
992.51 s
[algebraic-graph-duoids] Using ld found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ld.gold
992.51 s
[algebraic-graph-duoids] No pkg-config found
992.51 s
[algebraic-graph-duoids] Using runghc version 9.6.7 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/da9x1n5l146q0ai9wz8zfbx4zfwa9b02-ghc-9.6.7/bin/runghc-9.6.7
992.51 s
[algebraic-graph-duoids] Using strip version 2.44 found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
992.51 s
[algebraic-graph-duoids] Using tar found on system at:
992.51 s
[algebraic-graph-duoids] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
992.51 s
[algebraic-graph-duoids] No uhc found
992.77 s
[algebraic-graph-duoids] Phase: buildPhase
992.84 s
[algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
992.84 s
[algebraic-graph-duoids] Building library for algebraic-graph-duoids-0.0.1.0...
992.97 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 )
993.35 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 )
994.32 s
[algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, dist/build/Algebra/Graph/Duoid.p_o )
994.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 )
998.34 s
[algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
998.34 s
[algebraic-graph-duoids] Building test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
998.44 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 )
998.89 s
[algebraic-graph-duoids] [2 of 2] Compiling Main ( tests/doctests.hs, dist/build/doctests/doctests-tmp/Main.o )
999.48 s
[algebraic-graph-duoids] [3 of 3] Linking dist/build/doctests/doctests
1002.74 s
[algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
1002.74 s
[algebraic-graph-duoids] Building test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
1002.85 s
[algebraic-graph-duoids] [1 of 1] Compiling Main ( tests/laws.hs, dist/build/laws/laws-tmp/Main.o )
1003.70 s
[algebraic-graph-duoids] [2 of 2] Linking dist/build/laws/laws
1004.69 s
[algebraic-graph-duoids] Phase: checkPhase
1004.94 s
[algebraic-graph-duoids] Running 2 test suites...
1004.94 s
[algebraic-graph-duoids] Test suite doctests: RUNNING...
1005.48 s
[algebraic-graph-duoids] Examples: 0 Tried: 0 Errors: 0 Failures: 0
1005.52 s
[algebraic-graph-duoids] NameLib Nothing
1005.52 s
[algebraic-graph-duoids] ----------------------------------------
1005.53 s
[algebraic-graph-duoids] Test suite doctests: PASS
1005.53 s
[algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-doctests.log
1005.53 s
[algebraic-graph-duoids] Test suite laws: RUNNING...
1005.54 s
[algebraic-graph-duoids] ━━━ Duoid.Normal (Graph Word8) ━━━
1005.55 s
[algebraic-graph-duoids] ✓ unswapUnit passed 100 tests.
1005.55 s
[algebraic-graph-duoids] ✓ interchange passed 100 tests.
1005.55 s
[algebraic-graph-duoids] ✓ splitUnit passed 100 tests.
1005.55 s
[algebraic-graph-duoids] ✓ joinUnit passed 100 tests.
1005.55 s
[algebraic-graph-duoids] ✓ swapUnit passed 100 tests.
1005.55 s
[algebraic-graph-duoids] ✓ 5 succeeded.
1005.56 s
[algebraic-graph-duoids] Test suite laws: PASS
1005.56 s
[algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-laws.log
1005.56 s
[algebraic-graph-duoids] 2 of 2 test suites (2 of 2 test cases) passed.
1005.57 s
[algebraic-graph-duoids] Phase: haddockPhase
1005.72 s
[algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
1005.72 s
[algebraic-graph-duoids] Running Haddock on library for algebraic-graph-duoids-0.0.1.0...
1006.13 s
[algebraic-graph-duoids] 100% ( 5 / 5) in 'Algebra.Graph.Duoid'
1006.43 s
[algebraic-graph-duoids] 100% ( 1 / 1) in 'Algebra.Graph.Duoid.Orphans'
1013.35 s
[algebraic-graph-duoids] Documentation created: dist/doc/html/algebraic-graph-duoids/,
1013.38 s
[algebraic-graph-duoids] dist/doc/html/algebraic-graph-duoids/algebraic-graph-duoids.txt
1013.40 s
[algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
1013.40 s
[algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
1013.42 s
[algebraic-graph-duoids] Phase: installPhase
1013.48 s
[algebraic-graph-duoids] Installing library in /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.6.7/lib/x86_64-linux-ghc-9.6.7/algebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2
1013.73 s
[algebraic-graph-duoids] Phase: fixupPhase
1013.75 s
[algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0
1013.76 s
[algebraic-graph-duoids] shrinking /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.6.7/lib/x86_64-linux-ghc-9.6.7/libHSalgebraic-graph-duoids-0.0.1.0-CzPg39GZm1W22KIQqBc1b2-ghc9.6.7.so
1013.76 s
[algebraic-graph-duoids] checking for references to /build/ in /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0...
1013.78 s
[algebraic-graph-duoids] patching script interpreter paths in /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0
1013.78 s
[algebraic-graph-duoids] stripping (with command strip and flags -S -p) in /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/lib
1013.82 s
[algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc
1013.82 s
[algebraic-graph-duoids] checking for references to /build/ in /nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc...
1013.84 s
[algebraic-graph-duoids] patching script interpreter paths in /nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc
1013.96 s
[algebraic-graph-duoids:post-build] Uploading to cachix cache "sellout": /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0 /nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc
1014.43 s
[algebraic-graph-duoids:post-build] Pushing 2 paths (76 are already present) using zstd to cache sellout ⏳
1014.43 s
[algebraic-graph-duoids:post-build]
1014.80 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc (539.14 KiB)
1017.49 s
[algebraic-graph-duoids:post-build] Pushing /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0 (1.24 MiB)
1018.47 s
[algebraic-graph-duoids:post-build]
1018.51 s
[algebraic-graph-duoids:post-build] All done.
1018.51 s
[algebraic-graph-duoids:post-build] Uploading to the NixCI cache: /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0 /nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc
1018.54 s
[algebraic-graph-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1018.55 s
[algebraic-graph-duoids:post-build] copying 2 paths...
1018.55 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/gb5gpk7kdqxyxhq533351wf78zyw0gj2-algebraic-graph-duoids-0.0.1.0-doc' to 'https://cache.nix-ci.com'...
1018.95 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0' to 'https://cache.nix-ci.com'...
1019.50 s
[algebraic-graph-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1019.76 s
[algebraic-graph-duoids:post-build] copying 1 paths...
1019.76 s
[algebraic-graph-duoids:post-build] copying path '/nix/store/hjisvv3ql6846hgj9ik99qbrqh7z51zw-algebraic-graph-duoids-0.0.1.0.drv' to 'https://cache.nix-ci.com'...
1020.00 s
Progress: 15 of 19 built, 73 of 73 downloaded from cache
1020.05 s
Building /nix/store/9rr81xr88204gfb38cz7jk453s07av6n-ghc-9.6.7-with-packages.drv
1020.10 s
[ghc-9.6.7-with-packages] /nix/store/5yvghn5w8irf3zxipgn0sxz3qmq5az3p-duoidal-transformers-0.0.1.0/nix-support:
1020.10 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.11 s
[ghc-9.6.7-with-packages] /nix/store/jmxi0rvzsngp74i45imqn7rc1f61qyxd-duoids-0.0.1.0/nix-support:
1020.11 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.11 s
[ghc-9.6.7-with-packages] /nix/store/581q49za01qv2y8s8jvjs6f7sl8frlh0-duoids-hedgehog-0.0.1.0/nix-support:
1020.11 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.11 s
[ghc-9.6.7-with-packages] /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7/nix-support:
1020.11 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.12 s
[ghc-9.6.7-with-packages] /nix/store/jnbci5ady6nnlicbwxrr3qdv18gip9p1-algebraic-graphs-0.7/nix-support:
1020.12 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.12 s
[ghc-9.6.7-with-packages] /nix/store/ws4bxm02xf3qm4nhj7wqa0pmnyap2ly6-ghc-compat-plugin-0.1.0.1/nix-support:
1020.12 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.12 s
[ghc-9.6.7-with-packages] /nix/store/ws4bxm02xf3qm4nhj7wqa0pmnyap2ly6-ghc-compat-plugin-0.1.0.1/nix-support:
1020.12 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.13 s
[ghc-9.6.7-with-packages] /nix/store/dy7plzxvi4bj3cj8g64wf3k5vaj5c70a-hedgehog-1.5/nix-support:
1020.13 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.13 s
[ghc-9.6.7-with-packages] /nix/store/dy7plzxvi4bj3cj8g64wf3k5vaj5c70a-hedgehog-1.5/nix-support:
1020.13 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.13 s
[ghc-9.6.7-with-packages] /nix/store/fcbs80997frlprcgnfz1pgqzwx17bdfj-ansi-terminal-1.1.3/nix-support:
1020.13 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.13 s
[ghc-9.6.7-with-packages] /nix/store/fcbs80997frlprcgnfz1pgqzwx17bdfj-ansi-terminal-1.1.3/nix-support:
1020.13 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.14 s
[ghc-9.6.7-with-packages] /nix/store/jjabyw5gl9cvdkdwfmgvllmj76cd5xx2-async-2.2.5/nix-support:
1020.14 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.14 s
[ghc-9.6.7-with-packages] /nix/store/jjabyw5gl9cvdkdwfmgvllmj76cd5xx2-async-2.2.5/nix-support:
1020.14 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.14 s
[ghc-9.6.7-with-packages] /nix/store/1rnj3abisldb1ysvfg7jx4xq63kvnh9f-barbies-2.1.1.0/nix-support:
1020.14 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.14 s
[ghc-9.6.7-with-packages] /nix/store/1rnj3abisldb1ysvfg7jx4xq63kvnh9f-barbies-2.1.1.0/nix-support:
1020.14 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.15 s
[ghc-9.6.7-with-packages] /nix/store/ygwfbz0mwnsj9r4vy9zhqnhn5baqlwz7-concurrent-output-1.10.21/nix-support:
1020.15 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.15 s
[ghc-9.6.7-with-packages] /nix/store/ygwfbz0mwnsj9r4vy9zhqnhn5baqlwz7-concurrent-output-1.10.21/nix-support:
1020.15 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.15 s
[ghc-9.6.7-with-packages] /nix/store/76z6kzz2xf8gljhm76swxb542xp0lqkz-lifted-async-0.10.2.7/nix-support:
1020.15 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.15 s
[ghc-9.6.7-with-packages] /nix/store/76z6kzz2xf8gljhm76swxb542xp0lqkz-lifted-async-0.10.2.7/nix-support:
1020.15 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.16 s
[ghc-9.6.7-with-packages] /nix/store/iasz4h3zl5q9kgrf288g9fak6g03s54x-mmorph-1.2.1/nix-support:
1020.16 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.16 s
[ghc-9.6.7-with-packages] /nix/store/iasz4h3zl5q9kgrf288g9fak6g03s54x-mmorph-1.2.1/nix-support:
1020.16 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.16 s
[ghc-9.6.7-with-packages] /nix/store/9h348vl6yhan64ibbcabyjx2fmxs7d3b-monad-control-1.0.3.1/nix-support:
1020.16 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.16 s
[ghc-9.6.7-with-packages] /nix/store/9h348vl6yhan64ibbcabyjx2fmxs7d3b-monad-control-1.0.3.1/nix-support:
1020.16 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.16 s
[ghc-9.6.7-with-packages] /nix/store/wdxmylyqc8p4j414kk3ymndp5i2yqjm3-pretty-show-1.10/nix-support:
1020.16 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.17 s
[ghc-9.6.7-with-packages] /nix/store/wdxmylyqc8p4j414kk3ymndp5i2yqjm3-pretty-show-1.10/nix-support:
1020.17 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.17 s
[ghc-9.6.7-with-packages] /nix/store/k1gharvwzs4drk9axklr4dcizqkqnia7-primitive-0.9.1.0/nix-support:
1020.17 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.17 s
[ghc-9.6.7-with-packages] /nix/store/k1gharvwzs4drk9axklr4dcizqkqnia7-primitive-0.9.1.0/nix-support:
1020.17 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.17 s
[ghc-9.6.7-with-packages] /nix/store/nnj36snlh7c273pijflsjp18z8z6bv71-random-1.2.1.3/nix-support:
1020.17 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.17 s
[ghc-9.6.7-with-packages] /nix/store/nnj36snlh7c273pijflsjp18z8z6bv71-random-1.2.1.3/nix-support:
1020.17 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.18 s
[ghc-9.6.7-with-packages] /nix/store/hgb60y6pgscn0xg3sa2j4llfykqikdcb-resourcet-1.3.0/nix-support:
1020.18 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.18 s
[ghc-9.6.7-with-packages] /nix/store/hgb60y6pgscn0xg3sa2j4llfykqikdcb-resourcet-1.3.0/nix-support:
1020.18 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.18 s
[ghc-9.6.7-with-packages] /nix/store/gni425lh8g2a5k2iy04gza6hxwivikyp-safe-exceptions-0.1.7.4/nix-support:
1020.18 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.18 s
[ghc-9.6.7-with-packages] /nix/store/gni425lh8g2a5k2iy04gza6hxwivikyp-safe-exceptions-0.1.7.4/nix-support:
1020.18 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.18 s
[ghc-9.6.7-with-packages] /nix/store/iq5g0dfwam9zz3v08lgvcvvvgwhsbv0x-transformers-base-0.4.6/nix-support:
1020.18 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.18 s
[ghc-9.6.7-with-packages] /nix/store/iq5g0dfwam9zz3v08lgvcvvvgwhsbv0x-transformers-base-0.4.6/nix-support:
1020.18 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.18 s
[ghc-9.6.7-with-packages] /nix/store/w5r1n1grfq99nsaqjfsi3qspcxikk9hl-wl-pprint-annotated-0.1.0.1/nix-support:
1020.19 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.19 s
[ghc-9.6.7-with-packages] /nix/store/w5r1n1grfq99nsaqjfsi3qspcxikk9hl-wl-pprint-annotated-0.1.0.1/nix-support:
1020.19 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.19 s
[ghc-9.6.7-with-packages] /nix/store/i1773scyxkqyblf6vpzp8rwlnivkfggx-ansi-terminal-types-1.1.3/nix-support:
1020.19 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.19 s
[ghc-9.6.7-with-packages] /nix/store/i1773scyxkqyblf6vpzp8rwlnivkfggx-ansi-terminal-types-1.1.3/nix-support:
1020.19 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.20 s
[ghc-9.6.7-with-packages] /nix/store/6pimarw92xx2gdc004l52j33pgfnk5q3-hashable-1.5.0.0/nix-support:
1020.20 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.20 s
[ghc-9.6.7-with-packages] /nix/store/6pimarw92xx2gdc004l52j33pgfnk5q3-hashable-1.5.0.0/nix-support:
1020.20 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.20 s
[ghc-9.6.7-with-packages] /nix/store/r45rn7pmhwhm2a2arlc59m6q0ayf3x7k-distributive-0.6.2.1/nix-support:
1020.20 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.20 s
[ghc-9.6.7-with-packages] /nix/store/r45rn7pmhwhm2a2arlc59m6q0ayf3x7k-distributive-0.6.2.1/nix-support:
1020.20 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.21 s
[ghc-9.6.7-with-packages] /nix/store/g35hdx8r4gl48g5p5a7716hzmiacl823-constraints-0.14.2/nix-support:
1020.21 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.21 s
[ghc-9.6.7-with-packages] /nix/store/g35hdx8r4gl48g5p5a7716hzmiacl823-constraints-0.14.2/nix-support:
1020.21 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.21 s
[ghc-9.6.7-with-packages] /nix/store/0yc01qnfkqq6ncifsd27ap4dvplafl0w-lifted-base-0.2.3.12/nix-support:
1020.21 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.22 s
[ghc-9.6.7-with-packages] /nix/store/0yc01qnfkqq6ncifsd27ap4dvplafl0w-lifted-base-0.2.3.12/nix-support:
1020.22 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.22 s
[ghc-9.6.7-with-packages] /nix/store/x61ml6alhwgm163idq8ykgn021gn0lf6-transformers-compat-0.7.2/nix-support:
1020.22 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.22 s
[ghc-9.6.7-with-packages] /nix/store/x61ml6alhwgm163idq8ykgn021gn0lf6-transformers-compat-0.7.2/nix-support:
1020.22 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.22 s
[ghc-9.6.7-with-packages] /nix/store/zyhsf74vsbisnk8nxg7immascxvrgzrx-splitmix-0.1.3.1/nix-support:
1020.22 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.23 s
[ghc-9.6.7-with-packages] /nix/store/zyhsf74vsbisnk8nxg7immascxvrgzrx-splitmix-0.1.3.1/nix-support:
1020.23 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.23 s
[ghc-9.6.7-with-packages] /nix/store/qq625vh42zngn5an1w1fipnj2h9yfxb6-unliftio-core-0.2.1.0/nix-support:
1020.23 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.23 s
[ghc-9.6.7-with-packages] /nix/store/qq625vh42zngn5an1w1fipnj2h9yfxb6-unliftio-core-0.2.1.0/nix-support:
1020.23 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.23 s
[ghc-9.6.7-with-packages] /nix/store/hf7mjbw39mc2s31v9s0gvq0irxrj3ljz-base-orphans-0.9.3/nix-support:
1020.23 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.23 s
[ghc-9.6.7-with-packages] /nix/store/hf7mjbw39mc2s31v9s0gvq0irxrj3ljz-base-orphans-0.9.3/nix-support:
1020.23 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.23 s
[ghc-9.6.7-with-packages] /nix/store/8qkh2vgcsvil9pkzial83q66cc6csf0h-os-string-2.0.8/nix-support:
1020.23 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.24 s
[ghc-9.6.7-with-packages] /nix/store/8qkh2vgcsvil9pkzial83q66cc6csf0h-os-string-2.0.8/nix-support:
1020.24 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.24 s
[ghc-9.6.7-with-packages] /nix/store/74c3l72p3ahsbcdqzxpmicwp8cyhqj1d-tagged-0.8.9/nix-support:
1020.24 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.24 s
[ghc-9.6.7-with-packages] /nix/store/74c3l72p3ahsbcdqzxpmicwp8cyhqj1d-tagged-0.8.9/nix-support:
1020.24 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.24 s
[ghc-9.6.7-with-packages] /nix/store/fam1g9nds2cbk2b6xp4jv742dm7kkjkp-boring-0.2.2/nix-support:
1020.24 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.24 s
[ghc-9.6.7-with-packages] /nix/store/fam1g9nds2cbk2b6xp4jv742dm7kkjkp-boring-0.2.2/nix-support:
1020.24 s
[ghc-9.6.7-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/4ppjzklhmzkj9gl2nz7a6x1gb5x2sswf-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
1020.91 s
[ghc-9.6.7-with-packages] Warning: include-dirs: /nix/store/c2qyn7kf4x0rdav69mfw05gyvn9p8lgr-ghc-9.6.7-with-packages/lib/ghc-9.6.7/lib/../lib/x86_64-linux-ghc-9.6.7/directory-1.3.8.5/include doesn't exist or isn't a directory
1021.88 s
[ghc-9.6.7-with-packages:post-build] Uploading to cachix cache "sellout": /nix/store/c2qyn7kf4x0rdav69mfw05gyvn9p8lgr-ghc-9.6.7-with-packages
1022.36 s
[ghc-9.6.7-with-packages:post-build] Pushing 1 paths (146 are already present) using zstd to cache sellout ⏳
1022.36 s
[ghc-9.6.7-with-packages:post-build]
1022.73 s
[ghc-9.6.7-with-packages:post-build] Pushing /nix/store/c2qyn7kf4x0rdav69mfw05gyvn9p8lgr-ghc-9.6.7-with-packages (4.26 MiB)
1024.32 s
[ghc-9.6.7-with-packages:post-build]
1024.40 s
[ghc-9.6.7-with-packages:post-build] All done.
1024.40 s
[ghc-9.6.7-with-packages:post-build] Uploading to the NixCI cache: /nix/store/c2qyn7kf4x0rdav69mfw05gyvn9p8lgr-ghc-9.6.7-with-packages
1024.40 s
[ghc-9.6.7-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1024.60 s
[ghc-9.6.7-with-packages:post-build] copying 1 paths...
1024.60 s
[ghc-9.6.7-with-packages:post-build] copying path '/nix/store/c2qyn7kf4x0rdav69mfw05gyvn9p8lgr-ghc-9.6.7-with-packages' to 'https://cache.nix-ci.com'...
1025.72 s
[ghc-9.6.7-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1025.98 s
[ghc-9.6.7-with-packages:post-build] copying 1 paths...
1025.98 s
[ghc-9.6.7-with-packages:post-build] copying path '/nix/store/9rr81xr88204gfb38cz7jk453s07av6n-ghc-9.6.7-with-packages.drv' to 'https://cache.nix-ci.com'...
1026.22 s
Progress: 16 of 18 built, 73 of 73 downloaded from cache
1026.27 s
Building /nix/store/5nbxbbl490m1g7bd0m36lkbhrnpn4l41-all-packages.drv
1026.33 s
[all-packages] created 3 symlinks in user environment
1026.36 s
[all-packages:post-build] Uploading to cachix cache "sellout": /nix/store/ls2yckzgikhzf5v1qcjxi3r07b0fzgl0-all-packages
1026.89 s
[all-packages:post-build] Pushing 1 paths (147 are already present) using zstd to cache sellout ⏳
1026.89 s
[all-packages:post-build]
1027.25 s
[all-packages:post-build] Pushing /nix/store/ls2yckzgikhzf5v1qcjxi3r07b0fzgl0-all-packages (872.00 B)
1028.23 s
[all-packages:post-build]
1028.23 s
[all-packages:post-build] All done.
1028.25 s
[all-packages:post-build] Uploading to the NixCI cache: /nix/store/ls2yckzgikhzf5v1qcjxi3r07b0fzgl0-all-packages
1028.29 s
[all-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1028.74 s
[all-packages:post-build] copying 1 paths...
1028.74 s
[all-packages:post-build] copying path '/nix/store/ls2yckzgikhzf5v1qcjxi3r07b0fzgl0-all-packages' to 'https://cache.nix-ci.com'...
1029.00 s
[all-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1029.24 s
[all-packages:post-build] copying 1 paths...
1029.24 s
[all-packages:post-build] copying path '/nix/store/5nbxbbl490m1g7bd0m36lkbhrnpn4l41-all-packages.drv' to 'https://cache.nix-ci.com'...
1029.47 s
Progress: 17 of 18 built, 73 of 73 downloaded from cache
1029.47 s
Progress: 18 of 18 built, 73 of 73 downloaded from cache
1029.47 s
/nix/store/ls2yckzgikhzf5v1qcjxi3r07b0fzgl0-all-packages
1029.52 s
Build succeeded.