build packages.x86_64-linux.ghc9122_all

Reproduce this run
  1. 1613.04 s [algebraic-graphs]
  2. 1613.04 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertices1 ============
  3. 1613.04 s [algebraic-graphs] OK: vertices1 [x] == vertex x
  4. 1613.04 s [algebraic-graphs] OK: hasVertex x . vertices1 == elem x
  5. 1613.04 s [algebraic-graphs] OK: vertexCount . vertices1 == length . nub
  6. 1613.04 s [algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
  7. 1613.04 s [algebraic-graphs]
  8. 1613.04 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.edges1 ============
  9. 1613.04 s [algebraic-graphs] OK: edges1 [(x,y)] == edge x y
  10. 1613.04 s [algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
  11. 1613.04 s [algebraic-graphs] OK: edgeCount . edges1 == length . nub
  12. 1613.04 s [algebraic-graphs]
  13. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.overlays1 ============
  14. 1616.03 s [algebraic-graphs] OK: overlays1 [x] == x
  15. 1616.03 s [algebraic-graphs] OK: overlays1 [x,y] == overlay x y
  16. 1616.03 s [algebraic-graphs]
  17. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.connects1 ============
  18. 1616.03 s [algebraic-graphs] OK: connects1 [x] == x
  19. 1616.03 s [algebraic-graphs] OK: connects1 [x,y] == connect x y
  20. 1616.03 s [algebraic-graphs]
  21. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.isSubgraphOf ============
  22. 1616.03 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  23. 1616.03 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  24. 1616.03 s [algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
  25. 1616.03 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  26. 1616.03 s [algebraic-graphs]
  27. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasVertex ============
  28. 1616.03 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  29. 1616.03 s [algebraic-graphs]
  30. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.hasEdge ============
  31. 1616.03 s [algebraic-graphs] OK: hasEdge x y (vertex z) == False
  32. 1616.03 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  33. 1616.03 s [algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
  34. 1616.03 s [algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
  35. 1616.03 s [algebraic-graphs]
  36. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexCount ============
  37. 1616.03 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  38. 1616.03 s [algebraic-graphs] OK: vertexCount x >= 1
  39. 1616.03 s [algebraic-graphs] OK: vertexCount == length . vertexList1
  40. 1616.03 s [algebraic-graphs]
  41. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeCount ============
  42. 1616.03 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  43. 1616.03 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  44. 1616.03 s [algebraic-graphs] OK: edgeCount == length . edgeList
  45. 1616.03 s [algebraic-graphs]
  46. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexList1 ============
  47. 1616.03 s [algebraic-graphs] OK: vertexList1 (vertex x) == [x]
  48. 1616.03 s [algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
  49. 1616.03 s [algebraic-graphs]
  50. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeList ============
  51. 1616.03 s [algebraic-graphs] OK: edgeList (vertex x) == []
  52. 1616.03 s [algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
  53. 1616.03 s [algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
  54. 1616.03 s [algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
  55. 1616.03 s [algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
  56. 1616.03 s [algebraic-graphs]
  57. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.vertexSet ============
  58. 1616.03 s [algebraic-graphs] OK: vertexSet . vertex == Set.singleton
  59. 1616.03 s [algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
  60. 1616.03 s [algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
  61. 1616.03 s [algebraic-graphs]
  62. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.edgeSet ============
  63. 1616.03 s [algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
  64. 1616.03 s [algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
  65. 1616.03 s [algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
  66. 1616.03 s [algebraic-graphs]
  67. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.preSet ============
  68. 1616.03 s [algebraic-graphs] OK: preSet x (vertex x) == Set.empty
  69. 1616.03 s [algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
  70. 1616.03 s [algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
  71. 1616.03 s [algebraic-graphs]
  72. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.postSet ============
  73. 1616.03 s [algebraic-graphs] OK: postSet x (vertex x) == Set.empty
  74. 1616.03 s [algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
  75. 1616.03 s [algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
  76. 1616.03 s [algebraic-graphs]
  77. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.path1 ============
  78. 1616.03 s [algebraic-graphs] OK: path1 [x] == vertex x
  79. 1616.03 s [algebraic-graphs] OK: path1 [x,y] == edge x y
  80. 1616.03 s [algebraic-graphs] OK: path1 . reverse == transpose . path1
  81. 1616.03 s [algebraic-graphs]
  82. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.circuit1 ============
  83. 1616.03 s [algebraic-graphs] OK: circuit1 [x] == edge x x
  84. 1616.03 s [algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
  85. 1616.03 s [algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
  86. 1616.03 s [algebraic-graphs]
  87. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.clique1 ============
  88. 1616.03 s [algebraic-graphs] OK: clique1 [x] == vertex x
  89. 1616.03 s [algebraic-graphs] OK: clique1 [x,y] == edge x y
  90. 1616.03 s [algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
  91. 1616.03 s [algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
  92. 1616.03 s [algebraic-graphs] OK: clique1 . reverse == transpose . clique1
  93. 1616.03 s [algebraic-graphs]
  94. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.biclique1 ============
  95. 1616.03 s [algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  96. 1616.03 s [algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
  97. 1616.03 s [algebraic-graphs]
  98. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.star ============
  99. 1616.03 s [algebraic-graphs] OK: star x [] == vertex x
  100. 1616.03 s [algebraic-graphs] OK: star x [y] == edge x y
  101. 1616.03 s [algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
  102. 1616.03 s [algebraic-graphs]
  103. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.stars1 ============
  104. 1616.03 s [algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
  105. 1616.03 s [algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
  106. 1616.03 s [algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
  107. 1616.03 s [algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
  108. 1616.03 s [algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
  109. 1616.03 s [algebraic-graphs]
  110. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.tree ============
  111. 1616.03 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  112. 1616.03 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
  113. 1616.03 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  114. 1616.03 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
  115. 1616.03 s [algebraic-graphs]
  116. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeVertex1 ============
  117. 1616.03 s [algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
  118. 1616.03 s [algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
  119. 1616.03 s [algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
  120. 1616.03 s [algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
  121. 1616.03 s [algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
  122. 1616.03 s [algebraic-graphs]
  123. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.removeEdge ============
  124. 1616.03 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
  125. 1616.03 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  126. 1616.03 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  127. 1616.03 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  128. 1616.03 s [algebraic-graphs]
  129. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.replaceVertex ============
  130. 1616.03 s [algebraic-graphs] OK: replaceVertex x x == id
  131. 1616.03 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  132. 1616.03 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  133. 1616.03 s [algebraic-graphs]
  134. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.mergeVertices ============
  135. 1616.03 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  136. 1616.03 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  137. 1616.03 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  138. 1616.03 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  139. 1616.03 s [algebraic-graphs]
  140. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.transpose ============
  141. 1616.03 s [algebraic-graphs] OK: transpose (vertex x) == vertex x
  142. 1616.03 s [algebraic-graphs] OK: transpose (edge x y) == edge y x
  143. 1616.03 s [algebraic-graphs] OK: transpose . transpose == id
  144. 1616.03 s [algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
  145. 1616.03 s [algebraic-graphs]
  146. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.gmap ============
  147. 1616.03 s [algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
  148. 1616.03 s [algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
  149. 1616.03 s [algebraic-graphs] OK: gmap id == id
  150. 1616.03 s [algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
  151. 1616.03 s [algebraic-graphs]
  152. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.induce1 ============
  153. 1616.03 s [algebraic-graphs] OK: induce1 (const True ) x == Just x
  154. 1616.03 s [algebraic-graphs] OK: induce1 (const False) x == Nothing
  155. 1616.03 s [algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
  156. 1616.03 s [algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
  157. 1616.03 s [algebraic-graphs]
  158. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.induceJust1 ============
  159. 1616.03 s [algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
  160. 1616.03 s [algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
  161. 1616.03 s [algebraic-graphs] OK: induceJust1 . gmap Just == Just
  162. 1616.03 s [algebraic-graphs] OK: induceJust1 . gmap (\x -> if p x then Just x else Nothing) == induce1 p
  163. 1616.03 s [algebraic-graphs]
  164. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.closure ============
  165. 1616.03 s [algebraic-graphs] OK: closure (vertex x) == edge x x
  166. 1616.03 s [algebraic-graphs] OK: closure (edge x x) == edge x x
  167. 1616.03 s [algebraic-graphs] OK: closure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
  168. 1616.03 s [algebraic-graphs] OK: closure (path1 $ nub xs) == reflexiveClosure (clique1 $ nub xs)
  169. 1616.03 s [algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
  170. 1616.03 s [algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
  171. 1616.03 s [algebraic-graphs] OK: closure . closure == closure
  172. 1616.03 s [algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
  173. 1616.03 s [algebraic-graphs]
  174. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.reflexiveClosure ============
  175. 1616.03 s [algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
  176. 1616.03 s [algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
  177. 1616.03 s [algebraic-graphs] OK: reflexiveClosure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
  178. 1616.03 s [algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
  179. 1616.03 s [algebraic-graphs]
  180. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.symmetricClosure ============
  181. 1616.03 s [algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
  182. 1616.03 s [algebraic-graphs] OK: symmetricClosure (edge x y) == edges1 [(x,y), (y,x)]
  183. 1616.03 s [algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
  184. 1616.03 s [algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
  185. 1616.03 s [algebraic-graphs]
  186. 1616.03 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.transitiveClosure ============
  187. 1616.03 s [algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
  188. 1616.03 s [algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
  189. 1616.03 s [algebraic-graphs] OK: transitiveClosure (path1 $ nub xs) == clique1 (nub $ xs)
  190. 1616.03 s [algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
  191. 1616.03 s [algebraic-graphs]
  192. 1616.03 s [algebraic-graphs] ============ NonEmpty.Graph.============
  193. 1616.03 s [algebraic-graphs] OK: Axioms of non-empty graphs
  194. 1616.03 s [algebraic-graphs] OK: Theorems of non-empty graphs
  195. 1616.03 s [algebraic-graphs]
  196. 1616.03 s [algebraic-graphs] ============ Ord (NonEmpty.Graph a) ============
  197. 1616.03 s [algebraic-graphs] OK: vertex 1 < vertex 2
  198. 1616.03 s [algebraic-graphs] OK: vertex 3 < edge 1 2
  199. 1616.03 s [algebraic-graphs] OK: vertex 1 < edge 1 1
  200. 1616.03 s [algebraic-graphs] OK: edge 1 1 < edge 1 2
  201. 1616.03 s [algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
  202. 1616.03 s [algebraic-graphs] OK: edge 1 2 < edge 1 3
  203. 1616.03 s [algebraic-graphs] OK: x <= x + y
  204. 1616.03 s [algebraic-graphs] OK: x + y <= x * y
  205. 1616.03 s [algebraic-graphs]
  206. 1616.03 s [algebraic-graphs] ============ Functor (NonEmpty.Graph a) ============
  207. 1616.03 s [algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
  208. 1616.03 s [algebraic-graphs] OK: fmap f (edge x y) == edge (f x) (f y)
  209. 1616.03 s [algebraic-graphs] OK: fmap id == id
  210. 1616.03 s [algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
  211. 1616.03 s [algebraic-graphs]
  212. 1616.03 s [algebraic-graphs] ============ Monad (NonEmpty.Graph a) ============
  213. 1616.03 s [algebraic-graphs] OK: (vertex x >>= f) == f x
  214. 1617.54 s [algebraic-graphs] OK: (edge x y >>= f) == connect (f x) (f y)
  215. 1617.54 s [algebraic-graphs] OK: (vertices1 xs >>= f) == overlays1 (fmap f xs)
  216. 1617.54 s [algebraic-graphs] OK: (x >>= vertex) == x
  217. 1617.54 s [algebraic-graphs] OK: ((x >>= f) >>= g) == (x >>= (\y -> (f y) >>= g))
  218. 1617.54 s [algebraic-graphs]
  219. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.toNonEmpty ============
  220. 1617.54 s [algebraic-graphs] OK: toNonEmpty empty == Nothing
  221. 1617.54 s [algebraic-graphs] OK: toNonEmpty (toGraph x) == Just (x :: NonEmpty.Graph a)
  222. 1617.54 s [algebraic-graphs]
  223. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.vertex ============
  224. 1617.54 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  225. 1617.54 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  226. 1617.54 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  227. 1617.54 s [algebraic-graphs] OK: size (vertex x) == 1
  228. 1617.54 s [algebraic-graphs]
  229. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.edge ============
  230. 1617.54 s [algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
  231. 1617.54 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  232. 1617.54 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  233. 1617.54 s [algebraic-graphs] OK: vertexCount (edge 1 1) == 1
  234. 1617.54 s [algebraic-graphs] OK: vertexCount (edge 1 2) == 2
  235. 1617.54 s [algebraic-graphs]
  236. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.overlay ============
  237. 1617.54 s [algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
  238. 1617.54 s [algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
  239. 1617.54 s [algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
  240. 1617.54 s [algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
  241. 1617.54 s [algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
  242. 1617.54 s [algebraic-graphs] OK: size (overlay x y) == size x + size y
  243. 1617.54 s [algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
  244. 1617.54 s [algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
  245. 1617.54 s [algebraic-graphs]
  246. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.overlay1 ============
  247. 1617.54 s [algebraic-graphs] OK: overlay1 empty x == x
  248. 1617.54 s [algebraic-graphs] OK: x /= empty ==> overlay1 x y == overlay (fromJust $ toNonEmpty x) y
  249. 1617.54 s [algebraic-graphs]
  250. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.connect ============
  251. 1617.54 s [algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
  252. 1617.54 s [algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
  253. 1617.54 s [algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
  254. 1617.54 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
  255. 1617.54 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
  256. 1617.54 s [algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
  257. 1617.54 s [algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
  258. 1617.54 s [algebraic-graphs] OK: size (connect x y) == size x + size y
  259. 1617.54 s [algebraic-graphs] OK: vertexCount (connect 1 2) == 2
  260. 1617.54 s [algebraic-graphs] OK: edgeCount (connect 1 2) == 1
  261. 1617.54 s [algebraic-graphs]
  262. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.vertices1 ============
  263. 1617.54 s [algebraic-graphs] OK: vertices1 [x] == vertex x
  264. 1617.54 s [algebraic-graphs] OK: hasVertex x . vertices1 == elem x
  265. 1617.54 s [algebraic-graphs] OK: vertexCount . vertices1 == length . nub
  266. 1617.54 s [algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
  267. 1617.54 s [algebraic-graphs]
  268. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.edges1 ============
  269. 1617.54 s [algebraic-graphs] OK: edges1 [(x,y)] == edge x y
  270. 1617.54 s [algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
  271. 1617.54 s [algebraic-graphs] OK: edgeCount . edges1 == length . nub
  272. 1617.54 s [algebraic-graphs]
  273. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.overlays1 ============
  274. 1617.54 s [algebraic-graphs] OK: overlays1 [x] == x
  275. 1617.54 s [algebraic-graphs] OK: overlays1 [x,y] == overlay x y
  276. 1617.54 s [algebraic-graphs]
  277. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.connects1 ============
  278. 1617.54 s [algebraic-graphs] OK: connects1 [x] == x
  279. 1617.54 s [algebraic-graphs] OK: connects1 [x,y] == connect x y
  280. 1617.54 s [algebraic-graphs]
  281. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.foldg1 ============
  282. 1617.54 s [algebraic-graphs] OK: foldg1 vertex overlay connect == id
  283. 1617.54 s [algebraic-graphs] OK: foldg1 vertex overlay (flip connect) == transpose
  284. 1617.54 s [algebraic-graphs] OK: foldg1 (const 1) (+) (+) == size
  285. 1617.54 s [algebraic-graphs] OK: foldg1 (== x) (||) (||) == hasVertex x
  286. 1617.54 s [algebraic-graphs]
  287. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.isSubgraphOf ============
  288. 1617.54 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  289. 1617.54 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  290. 1617.54 s [algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
  291. 1617.54 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  292. 1617.54 s [algebraic-graphs]
  293. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.(===) ============
  294. 1617.54 s [algebraic-graphs] OK: x === x == True
  295. 1617.54 s [algebraic-graphs] OK: x + y === x + y == True
  296. 1617.54 s [algebraic-graphs] OK: 1 + 2 === 2 + 1 == False
  297. 1617.54 s [algebraic-graphs] OK: x + y === x * y == False
  298. 1617.54 s [algebraic-graphs]
  299. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.size ============
  300. 1617.54 s [algebraic-graphs] OK: size (vertex x) == 1
  301. 1617.54 s [algebraic-graphs] OK: size (overlay x y) == size x + size y
  302. 1617.54 s [algebraic-graphs] OK: size (connect x y) == size x + size y
  303. 1617.54 s [algebraic-graphs] OK: size x >= 1
  304. 1617.54 s [algebraic-graphs] OK: size x >= vertexCount x
  305. 1617.54 s [algebraic-graphs]
  306. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.hasVertex ============
  307. 1617.54 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  308. 1617.54 s [algebraic-graphs]
  309. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.hasEdge ============
  310. 1617.54 s [algebraic-graphs] OK: hasEdge x y (vertex z) == False
  311. 1617.54 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  312. 1617.54 s [algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
  313. 1617.54 s [algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
  314. 1617.54 s [algebraic-graphs]
  315. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.vertexCount ============
  316. 1617.54 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  317. 1617.54 s [algebraic-graphs] OK: vertexCount x >= 1
  318. 1617.54 s [algebraic-graphs] OK: vertexCount == length . vertexList1
  319. 1617.54 s [algebraic-graphs]
  320. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.edgeCount ============
  321. 1617.54 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  322. 1617.54 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  323. 1617.54 s [algebraic-graphs] OK: edgeCount == length . edgeList
  324. 1617.54 s [algebraic-graphs]
  325. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.vertexList1 ============
  326. 1617.54 s [algebraic-graphs] OK: vertexList1 (vertex x) == [x]
  327. 1617.54 s [algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
  328. 1617.54 s [algebraic-graphs]
  329. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.edgeList ============
  330. 1617.54 s [algebraic-graphs] OK: edgeList (vertex x) == []
  331. 1617.54 s [algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
  332. 1617.54 s [algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
  333. 1617.54 s [algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
  334. 1617.54 s [algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
  335. 1617.54 s [algebraic-graphs]
  336. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.vertexSet ============
  337. 1617.54 s [algebraic-graphs] OK: vertexSet . vertex == Set.singleton
  338. 1617.54 s [algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
  339. 1617.54 s [algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
  340. 1617.54 s [algebraic-graphs]
  341. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.edgeSet ============
  342. 1617.54 s [algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
  343. 1617.54 s [algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
  344. 1617.54 s [algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
  345. 1617.54 s [algebraic-graphs]
  346. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.path1 ============
  347. 1617.54 s [algebraic-graphs] OK: path1 [x] == vertex x
  348. 1617.54 s [algebraic-graphs] OK: path1 [x,y] == edge x y
  349. 1617.54 s [algebraic-graphs] OK: path1 . reverse == transpose . path1
  350. 1617.54 s [algebraic-graphs]
  351. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.circuit1 ============
  352. 1617.54 s [algebraic-graphs] OK: circuit1 [x] == edge x x
  353. 1617.54 s [algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
  354. 1617.54 s [algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
  355. 1617.54 s [algebraic-graphs]
  356. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.clique1 ============
  357. 1617.54 s [algebraic-graphs] OK: clique1 [x] == vertex x
  358. 1617.54 s [algebraic-graphs] OK: clique1 [x,y] == edge x y
  359. 1617.54 s [algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
  360. 1617.54 s [algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
  361. 1617.54 s [algebraic-graphs] OK: clique1 . reverse == transpose . clique1
  362. 1617.54 s [algebraic-graphs]
  363. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.biclique1 ============
  364. 1617.54 s [algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  365. 1617.54 s [algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
  366. 1617.54 s [algebraic-graphs]
  367. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.star ============
  368. 1617.54 s [algebraic-graphs] OK: star x [] == vertex x
  369. 1617.54 s [algebraic-graphs] OK: star x [y] == edge x y
  370. 1617.54 s [algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
  371. 1617.54 s [algebraic-graphs]
  372. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.stars1 ============
  373. 1617.54 s [algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
  374. 1617.54 s [algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
  375. 1617.54 s [algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
  376. 1617.54 s [algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
  377. 1617.54 s [algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
  378. 1617.54 s [algebraic-graphs]
  379. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.tree ============
  380. 1617.54 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  381. 1617.54 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
  382. 1617.54 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  383. 1617.54 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
  384. 1617.54 s [algebraic-graphs]
  385. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.mesh1 ============
  386. 1617.54 s [algebraic-graphs] OK: mesh1 [x] [y] == vertex (x, y)
  387. 1617.54 s [algebraic-graphs] OK: mesh1 xs ys == box (path1 xs) (path1 ys)
  388. 1617.54 s [algebraic-graphs] OK: mesh1 [1,2,3] ['a', 'b'] == <correct result>
  389. 1617.54 s [algebraic-graphs] OK: size (mesh xs ys) == max 1 (3 * length xs * length ys - length xs - length ys -1)
  390. 1617.54 s [algebraic-graphs]
  391. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.torus1 ============
  392. 1617.54 s [algebraic-graphs] OK: torus1 [x] [y] == edge (x,y) (x,y)
  393. 1617.54 s [algebraic-graphs] OK: torus1 xs ys == box (circuit1 xs) (circuit1 ys)
  394. 1617.54 s [algebraic-graphs] OK: torus1 [1,2] ['a', 'b'] == <correct result>
  395. 1617.54 s [algebraic-graphs] OK: size (torus1 xs ys) == max 1 (3 * length xs * length ys)
  396. 1617.54 s [algebraic-graphs]
  397. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.removeVertex1 ============
  398. 1617.54 s [algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
  399. 1617.54 s [algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
  400. 1617.54 s [algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
  401. 1617.54 s [algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
  402. 1617.54 s [algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
  403. 1617.54 s [algebraic-graphs]
  404. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.removeEdge ============
  405. 1617.54 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
  406. 1617.54 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  407. 1617.54 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  408. 1617.54 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  409. 1617.54 s [algebraic-graphs] OK: size (removeEdge x y z) <= 3 * size z
  410. 1617.54 s [algebraic-graphs]
  411. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.replaceVertex ============
  412. 1617.54 s [algebraic-graphs] OK: replaceVertex x x == id
  413. 1617.54 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  414. 1617.54 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  415. 1617.54 s [algebraic-graphs]
  416. 1617.54 s [algebraic-graphs] ============ NonEmpty.Graph.mergeVertices ============
  417. 1617.54 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  418. 1623.87 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  419. 1623.87 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  420. 1623.91 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  421. 1623.91 s [algebraic-graphs]
  422. 1623.91 s [algebraic-graphs] ============ NonEmpty.Graph.splitVertex1 ============
  423. 1623.91 s [algebraic-graphs] OK: splitVertex1 x [x] == id
  424. 1623.91 s [algebraic-graphs] OK: splitVertex1 x [y] == replaceVertex x y
  425. 1623.91 s [algebraic-graphs] OK: splitVertex1 1 [0,1] $ 1 * (2 + 3) == (0 + 1) * (2 + 3)
  426. 1623.91 s [algebraic-graphs]
  427. 1623.91 s [algebraic-graphs] ============ NonEmpty.Graph.transpose ============
  428. 1623.91 s [algebraic-graphs] OK: transpose (vertex x) == vertex x
  429. 1623.91 s [algebraic-graphs] OK: transpose (edge x y) == edge y x
  430. 1623.91 s [algebraic-graphs] OK: transpose . transpose == id
  431. 1623.91 s [algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
  432. 1623.91 s [algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
  433. 1623.91 s [algebraic-graphs]
  434. 1623.91 s [algebraic-graphs] ============ NonEmpty.Graph.induce1 ============
  435. 1623.91 s [algebraic-graphs] OK: induce1 (const True ) x == Just x
  436. 1623.91 s [algebraic-graphs] OK: induce1 (const False) x == Nothing
  437. 1623.91 s [algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
  438. 1623.91 s [algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
  439. 1623.91 s [algebraic-graphs]
  440. 1623.91 s [algebraic-graphs] ============ NonEmpty.Graph.induceJust1 ============
  441. 1623.91 s [algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
  442. 1623.91 s [algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
  443. 1623.91 s [algebraic-graphs] OK: induceJust1 . fmap Just == Just
  444. 1623.91 s [algebraic-graphs] OK: induceJust1 . fmap (\x -> if p x then Just x else Nothing) == induce1 p
  445. 1623.91 s [algebraic-graphs]
  446. 1623.91 s [algebraic-graphs] ============ NonEmpty.Graph.simplify ============
  447. 1623.91 s [algebraic-graphs] OK: simplify == id
  448. 1623.91 s [algebraic-graphs] OK: size (simplify x) <= size x
  449. 1623.91 s [algebraic-graphs] OK: simplify 1 === 1
  450. 1623.91 s [algebraic-graphs] OK: simplify (1 + 1) === 1
  451. 1623.91 s [algebraic-graphs] OK: simplify (1 + 2 + 1) === 1 + 2
  452. 1623.91 s [algebraic-graphs] OK: simplify (1 * 1 * 1) === 1 * 1
  453. 1623.91 s [algebraic-graphs]
  454. 1623.91 s [algebraic-graphs] ============ NonEmpty.Graph.sparsify ============
  455. 1623.91 s [algebraic-graphs] OK: sort . reachable x == sort . rights . reachable (sparsify x) . Right
  456. 1623.91 s [algebraic-graphs] OK: vertexCount (sparsify x) <= vertexCount x + size x + 1
  457. 1623.91 s [algebraic-graphs] OK: edgeCount (sparsify x) <= 3 * size x
  458. 1623.91 s [algebraic-graphs] OK: size (sparsify x) <= 3 * size x
  459. 1623.91 s [algebraic-graphs]
  460. 1623.91 s [algebraic-graphs] ============ NonEmpty.Graph.sparsifyKL ============
  461. 1623.91 s [algebraic-graphs] OK: sort . reachable x == sort . filter (<= n) . reachable (sparsifyKL n x)
  462. 1623.91 s [algebraic-graphs] OK: length (vertices $ sparsifyKL n x) <= vertexCount x + size x + 1
  463. 1623.91 s [algebraic-graphs] OK: length (edges $ sparsifyKL n x) <= 3 * size x
  464. 1623.91 s [algebraic-graphs]
  465. 1623.91 s [algebraic-graphs] ============ NonEmpty.Graph.box ============
  466. 1623.91 s [algebraic-graphs] OK: box (path1 [0,1]) (path1 ['a','b']) == <correct result>
  467. 1623.91 s [algebraic-graphs] OK: box x y ~~ box y x
  468. 1623.91 s [algebraic-graphs] OK: box x (overlay y z) == overlay (box x y) (box x z)
  469. 1623.91 s [algebraic-graphs] OK: box x (vertex ()) ~~ x
  470. 1623.91 s [algebraic-graphs] OK: box x (box y z) ~~ box (box x y) z
  471. 1623.91 s [algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
  472. 1623.91 s [algebraic-graphs] OK: vertexCount (box x y) == vertexCount x * vertexCount y
  473. 1623.91 s [algebraic-graphs] OK: edgeCount (box x y) <= vertexCount x * edgeCount y + edgeCount x * vertexCount y
  474. 1623.91 s [algebraic-graphs]
  475. 1623.91 s [algebraic-graphs] ============ Relation ============
  476. 1623.91 s [algebraic-graphs] OK: Axioms of graphs
  477. 1623.91 s [algebraic-graphs]
  478. 1623.91 s [algebraic-graphs] ============ Relation.consistent ============
  479. 1623.91 s [algebraic-graphs] OK: Consistency of the Arbitrary instance
  480. 1623.91 s [algebraic-graphs]
  481. 1623.91 s [algebraic-graphs] OK: consistent empty == True
  482. 1623.91 s [algebraic-graphs] OK: consistent (vertex x) == True
  483. 1623.91 s [algebraic-graphs] OK: consistent (overlay x y) == True
  484. 1623.91 s [algebraic-graphs] OK: consistent (connect x y) == True
  485. 1623.91 s [algebraic-graphs] OK: consistent (edge x y) == True
  486. 1623.91 s [algebraic-graphs] OK: consistent (edges xs) == True
  487. 1623.91 s [algebraic-graphs] OK: consistent (stars xs) == True
  488. 1623.91 s [algebraic-graphs]
  489. 1623.91 s [algebraic-graphs] ============ Relation.Show ============
  490. 1623.91 s [algebraic-graphs] OK: show (empty ) == "empty"
  491. 1623.91 s [algebraic-graphs] OK: show (1 ) == "vertex 1"
  492. 1623.91 s [algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
  493. 1623.91 s [algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
  494. 1623.91 s [algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
  495. 1623.91 s [algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
  496. 1623.91 s [algebraic-graphs]
  497. 1623.91 s [algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
  498. 1623.91 s [algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
  499. 1623.91 s [algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
  500. 1623.91 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
  501. 1623.91 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
  502. 1623.91 s [algebraic-graphs]
  503. 1623.91 s [algebraic-graphs] ============ Relation.Ord ============
  504. 1623.91 s [algebraic-graphs] OK: vertex 1 < vertex 2
  505. 1623.91 s [algebraic-graphs] OK: vertex 3 < edge 1 2
  506. 1623.91 s [algebraic-graphs] OK: vertex 1 < edge 1 1
  507. 1623.91 s [algebraic-graphs] OK: edge 1 1 < edge 1 2
  508. 1623.91 s [algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
  509. 1623.91 s [algebraic-graphs] OK: edge 1 2 < edge 1 3
  510. 1623.91 s [algebraic-graphs] OK: x <= x + y
  511. 1623.91 s [algebraic-graphs] OK: x + y <= x * y
  512. 1623.91 s [algebraic-graphs]
  513. 1623.91 s [algebraic-graphs] ============ Relation.empty ============
  514. 1623.91 s [algebraic-graphs] OK: isEmpty empty == True
  515. 1623.91 s [algebraic-graphs] OK: hasVertex x empty == False
  516. 1623.91 s [algebraic-graphs] OK: vertexCount empty == 0
  517. 1623.91 s [algebraic-graphs] OK: edgeCount empty == 0
  518. 1623.91 s [algebraic-graphs]
  519. 1623.91 s [algebraic-graphs] ============ Relation.vertex ============
  520. 1623.91 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  521. 1623.91 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  522. 1623.91 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  523. 1623.91 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  524. 1623.91 s [algebraic-graphs]
  525. 1623.91 s [algebraic-graphs] ============ Relation.edge ============
  526. 1623.91 s [algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
  527. 1623.91 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  528. 1623.91 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  529. 1623.91 s [algebraic-graphs] OK: vertexCount (edge 1 1) == 1
  530. 1623.91 s [algebraic-graphs] OK: vertexCount (edge 1 2) == 2
  531. 1623.91 s [algebraic-graphs]
  532. 1623.91 s [algebraic-graphs] ============ Relation.overlay ============
  533. 1623.91 s [algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
  534. 1623.91 s [algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
  535. 1623.91 s [algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
  536. 1623.91 s [algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
  537. 1623.91 s [algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
  538. 1623.91 s [algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
  539. 1623.91 s [algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
  540. 1623.91 s [algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
  541. 1623.91 s [algebraic-graphs]
  542. 1623.91 s [algebraic-graphs] ============ Relation.connect ============
  543. 1623.91 s [algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
  544. 1623.91 s [algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
  545. 1623.91 s [algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
  546. 1623.91 s [algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
  547. 1623.91 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
  548. 1623.91 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
  549. 1623.91 s [algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
  550. 1623.91 s [algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
  551. 1623.91 s [algebraic-graphs] OK: vertexCount (connect 1 2) == 2
  552. 1623.91 s [algebraic-graphs] OK: edgeCount (connect 1 2) == 1
  553. 1623.91 s [algebraic-graphs]
  554. 1623.91 s [algebraic-graphs] ============ Relation.vertices ============
  555. 1623.91 s [algebraic-graphs] OK: vertices [] == empty
  556. 1623.91 s [algebraic-graphs] OK: vertices [x] == vertex x
  557. 1623.91 s [algebraic-graphs] OK: vertices == overlays . map vertex
  558. 1623.91 s [algebraic-graphs] OK: hasVertex x . vertices == elem x
  559. 1623.91 s [algebraic-graphs] OK: vertexCount . vertices == length . nub
  560. 1623.91 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  561. 1623.91 s [algebraic-graphs]
  562. 1623.91 s [algebraic-graphs] ============ Relation.edges ============
  563. 1623.91 s [algebraic-graphs] OK: edges [] == empty
  564. 1623.91 s [algebraic-graphs] OK: edges [(x,y)] == edge x y
  565. 1623.91 s [algebraic-graphs] OK: edges == overlays . map (uncurry edge)
  566. 1623.91 s [algebraic-graphs] OK: edgeCount . edges == length . nub
  567. 1623.91 s [algebraic-graphs]
  568. 1623.91 s [algebraic-graphs] ============ Relation.overlays ============
  569. 1623.91 s [algebraic-graphs] OK: overlays [] == empty
  570. 1623.91 s [algebraic-graphs] OK: overlays [x] == x
  571. 1623.91 s [algebraic-graphs] OK: overlays [x,y] == overlay x y
  572. 1623.91 s [algebraic-graphs] OK: overlays == foldr overlay empty
  573. 1623.91 s [algebraic-graphs] OK: isEmpty . overlays == all isEmpty
  574. 1623.91 s [algebraic-graphs]
  575. 1623.91 s [algebraic-graphs] ============ Relation.connects ============
  576. 1623.91 s [algebraic-graphs] OK: connects [] == empty
  577. 1623.91 s [algebraic-graphs] OK: connects [x] == x
  578. 1623.91 s [algebraic-graphs] OK: connects [x,y] == connect x y
  579. 1623.91 s [algebraic-graphs] OK: connects == foldr connect empty
  580. 1623.91 s [algebraic-graphs] OK: isEmpty . connects == all isEmpty
  581. 1623.91 s [algebraic-graphs]
  582. 1623.91 s [algebraic-graphs] ============ Relation.isSubgraphOf ============
  583. 1623.91 s [algebraic-graphs] OK: isSubgraphOf empty x == True
  584. 1623.91 s [algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
  585. 1623.91 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  586. 1623.91 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  587. 1623.91 s [algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
  588. 1623.91 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  589. 1623.91 s [algebraic-graphs]
  590. 1623.91 s [algebraic-graphs] ============ Relation.toGraph et al. ============
  591. 1623.91 s [algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
  592. 1623.91 s [algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
  593. 1623.91 s [algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
  594. 1623.91 s [algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
  595. 1623.91 s [algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
  596. 1623.91 s [algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
  597. 1623.91 s [algebraic-graphs] OK: vertexCount == Set.size . vertexSet
  598. 1623.91 s [algebraic-graphs] OK: edgeCount == Set.size . edgeSet
  599. 1623.91 s [algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
  600. 1623.91 s [algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
  601. 1623.91 s [algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
  602. 1623.91 s [algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
  603. 1623.92 s [algebraic-graphs] OK: edgeSet == Algebra.Graph.AdjacencyMap.edgeSet . foldg empty vertex overlay connect
  604. 1623.92 s [algebraic-graphs] OK: preSet x == Algebra.Graph.AdjacencyMap.preSet x . toAdjacencyMap
  605. 1623.92 s [algebraic-graphs] OK: preIntSet x == Algebra.Graph.AdjacencyIntMap.preIntSet x . toAdjacencyIntMap
  606. 1623.92 s [algebraic-graphs] OK: postSet x == Algebra.Graph.AdjacencyMap.postSet x . toAdjacencyMap
  607. 1623.92 s [algebraic-graphs] OK: postIntSet x == Algebra.Graph.AdjacencyIntMap.postIntSet x . toAdjacencyIntMap
  608. 1627.02 s [algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
  609. 1627.02 s [algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
  610. 1627.02 s [algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
  611. 1627.02 s [algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
  612. 1627.02 s [algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
  613. 1627.02 s [algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
  614. 1627.02 s [algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
  615. 1627.02 s [algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
  616. 1627.02 s [algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
  617. 1627.02 s [algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
  618. 1627.02 s [algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
  619. 1627.02 s [algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
  620. 1627.02 s [algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
  621. 1627.02 s [algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
  622. 1627.02 s [algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
  623. 1627.02 s [algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
  624. 1627.02 s [algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
  625. 1627.02 s [algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
  626. 1627.02 s [algebraic-graphs]
  627. 1627.02 s [algebraic-graphs] ============ Relation.foldg ============
  628. 1627.02 s [algebraic-graphs] OK: foldg empty vertex overlay connect == id
  629. 1627.02 s [algebraic-graphs] OK: foldg empty vertex overlay (flip connect) == transpose
  630. 1627.02 s [algebraic-graphs] OK: foldg 1 (const 1) (+) (+) == size
  631. 1627.02 s [algebraic-graphs] OK: foldg True (const False) (&&) (&&) == isEmpty
  632. 1627.02 s [algebraic-graphs]
  633. 1627.02 s [algebraic-graphs] ============ Relation.isEmpty ============
  634. 1627.02 s [algebraic-graphs] OK: isEmpty empty == True
  635. 1627.02 s [algebraic-graphs] OK: isEmpty (overlay empty empty) == True
  636. 1627.02 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  637. 1627.02 s [algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
  638. 1627.02 s [algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
  639. 1627.02 s [algebraic-graphs]
  640. 1627.02 s [algebraic-graphs] ============ Relation.hasVertex ============
  641. 1627.02 s [algebraic-graphs] OK: hasVertex x empty == False
  642. 1627.02 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  643. 1627.02 s [algebraic-graphs] OK: hasVertex x . removeVertex x == const False
  644. 1627.02 s [algebraic-graphs]
  645. 1627.02 s [algebraic-graphs] ============ Relation.hasEdge ============
  646. 1627.02 s [algebraic-graphs] OK: hasEdge x y empty == False
  647. 1627.02 s [algebraic-graphs] OK: hasEdge x y (vertex z) == False
  648. 1627.02 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  649. 1627.02 s [algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
  650. 1627.02 s [algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
  651. 1627.02 s [algebraic-graphs]
  652. 1627.02 s [algebraic-graphs] ============ Relation.vertexCount ============
  653. 1627.02 s [algebraic-graphs] OK: vertexCount empty == 0
  654. 1627.02 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  655. 1627.02 s [algebraic-graphs] OK: vertexCount == length . vertexList
  656. 1627.02 s [algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
  657. 1627.02 s [algebraic-graphs]
  658. 1627.02 s [algebraic-graphs] ============ Relation.edgeCount ============
  659. 1627.02 s [algebraic-graphs] OK: edgeCount empty == 0
  660. 1627.02 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  661. 1627.02 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  662. 1627.02 s [algebraic-graphs] OK: edgeCount == length . edgeList
  663. 1627.02 s [algebraic-graphs]
  664. 1627.02 s [algebraic-graphs] ============ Relation.vertexList ============
  665. 1627.02 s [algebraic-graphs] OK: vertexList empty == []
  666. 1627.02 s [algebraic-graphs] OK: vertexList (vertex x) == [x]
  667. 1627.02 s [algebraic-graphs] OK: vertexList . vertices == nub . sort
  668. 1627.02 s [algebraic-graphs]
  669. 1627.02 s [algebraic-graphs] ============ Relation.vertexSet ============
  670. 1627.02 s [algebraic-graphs] OK: vertexSet empty == Set.empty
  671. 1627.02 s [algebraic-graphs] OK: vertexSet . vertex == Set.singleton
  672. 1627.02 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  673. 1627.02 s [algebraic-graphs]
  674. 1627.02 s [algebraic-graphs] ============ Relation.vertexIntSet ============
  675. 1627.02 s [algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
  676. 1627.02 s [algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
  677. 1627.02 s [algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
  678. 1627.02 s [algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
  679. 1627.02 s [algebraic-graphs]
  680. 1627.02 s [algebraic-graphs] ============ Relation.edgeList ============
  681. 1627.02 s [algebraic-graphs] OK: edgeList empty == []
  682. 1627.02 s [algebraic-graphs] OK: edgeList (vertex x) == []
  683. 1627.02 s [algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
  684. 1627.02 s [algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
  685. 1627.02 s [algebraic-graphs] OK: edgeList . edges == nub . sort
  686. 1627.02 s [algebraic-graphs]
  687. 1627.02 s [algebraic-graphs] ============ Relation.edgeSet ============
  688. 1627.02 s [algebraic-graphs] OK: edgeSet empty == Set.empty
  689. 1627.02 s [algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
  690. 1627.02 s [algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
  691. 1627.02 s [algebraic-graphs] OK: edgeSet . edges == Set.fromList
  692. 1627.02 s [algebraic-graphs]
  693. 1627.02 s [algebraic-graphs] ============ Relation.adjacencyList ============
  694. 1627.02 s [algebraic-graphs] OK: adjacencyList empty == []
  695. 1627.02 s [algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
  696. 1627.02 s [algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [])]
  697. 1627.02 s [algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, []), (2, [1,3]), (3, [])]
  698. 1627.02 s [algebraic-graphs]
  699. 1627.02 s [algebraic-graphs] ============ Relation.preSet ============
  700. 1627.02 s [algebraic-graphs] OK: preSet x empty == Set.empty
  701. 1627.02 s [algebraic-graphs] OK: preSet x (vertex x) == Set.empty
  702. 1627.02 s [algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
  703. 1627.02 s [algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
  704. 1627.02 s [algebraic-graphs]
  705. 1627.02 s [algebraic-graphs] ============ Relation.preIntSet ============
  706. 1627.02 s [algebraic-graphs] OK: preIntSet x empty == IntSet.empty
  707. 1627.02 s [algebraic-graphs] OK: preIntSet x (vertex x) == IntSet.empty
  708. 1627.02 s [algebraic-graphs] OK: preIntSet 1 (edge 1 2) == IntSet.empty
  709. 1627.02 s [algebraic-graphs] OK: preIntSet y (edge x y) == IntSet.fromList [x]
  710. 1627.02 s [algebraic-graphs]
  711. 1627.02 s [algebraic-graphs] ============ Relation.postSet ============
  712. 1627.02 s [algebraic-graphs] OK: postSet x empty == Set.empty
  713. 1627.02 s [algebraic-graphs] OK: postSet x (vertex x) == Set.empty
  714. 1627.02 s [algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
  715. 1627.02 s [algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
  716. 1627.02 s [algebraic-graphs]
  717. 1627.02 s [algebraic-graphs] ============ Relation.postIntSet ============
  718. 1627.02 s [algebraic-graphs] OK: postIntSet x empty == IntSet.empty
  719. 1627.02 s [algebraic-graphs] OK: postIntSet x (vertex x) == IntSet.empty
  720. 1627.02 s [algebraic-graphs] OK: postIntSet 2 (edge 1 2) == IntSet.empty
  721. 1627.02 s [algebraic-graphs] OK: postIntSet x (edge x y) == IntSet.fromList [y]
  722. 1627.02 s [algebraic-graphs]
  723. 1627.02 s [algebraic-graphs] ============ Relation.path ============
  724. 1627.02 s [algebraic-graphs] OK: path [] == empty
  725. 1627.02 s [algebraic-graphs] OK: path [x] == vertex x
  726. 1627.02 s [algebraic-graphs] OK: path [x,y] == edge x y
  727. 1627.02 s [algebraic-graphs]
  728. 1627.02 s [algebraic-graphs] ============ Relation.circuit ============
  729. 1627.02 s [algebraic-graphs] OK: circuit [] == empty
  730. 1627.02 s [algebraic-graphs] OK: circuit [x] == edge x x
  731. 1627.02 s [algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
  732. 1627.02 s [algebraic-graphs]
  733. 1627.02 s [algebraic-graphs] ============ Relation.clique ============
  734. 1627.02 s [algebraic-graphs] OK: clique [] == empty
  735. 1627.02 s [algebraic-graphs] OK: clique [x] == vertex x
  736. 1627.02 s [algebraic-graphs] OK: clique [x,y] == edge x y
  737. 1627.02 s [algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
  738. 1627.02 s [algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
  739. 1627.02 s [algebraic-graphs]
  740. 1627.02 s [algebraic-graphs] ============ Relation.biclique ============
  741. 1627.02 s [algebraic-graphs] OK: biclique [] [] == empty
  742. 1627.02 s [algebraic-graphs] OK: biclique [x] [] == vertex x
  743. 1627.02 s [algebraic-graphs] OK: biclique [] [y] == vertex y
  744. 1627.02 s [algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  745. 1627.02 s [algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
  746. 1627.02 s [algebraic-graphs]
  747. 1627.02 s [algebraic-graphs] ============ Relation.star ============
  748. 1627.02 s [algebraic-graphs] OK: star x [] == vertex x
  749. 1627.02 s [algebraic-graphs] OK: star x [y] == edge x y
  750. 1627.02 s [algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
  751. 1627.02 s [algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
  752. 1627.02 s [algebraic-graphs]
  753. 1627.02 s [algebraic-graphs] ============ Relation.stars ============
  754. 1627.02 s [algebraic-graphs] OK: stars [] == empty
  755. 1627.02 s [algebraic-graphs] OK: stars [(x, [])] == vertex x
  756. 1627.02 s [algebraic-graphs] OK: stars [(x, [y])] == edge x y
  757. 1627.02 s [algebraic-graphs] OK: stars [(x, ys)] == star x ys
  758. 1627.02 s [algebraic-graphs] OK: stars == overlays . map (uncurry star)
  759. 1627.02 s [algebraic-graphs] OK: stars . adjacencyList == id
  760. 1627.02 s [algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
  761. 1627.02 s [algebraic-graphs]
  762. 1627.02 s [algebraic-graphs] ============ Relation.tree ============
  763. 1627.02 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  764. 1627.02 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
  765. 1627.02 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  766. 1627.02 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
  767. 1627.02 s [algebraic-graphs]
  768. 1627.02 s [algebraic-graphs] ============ Relation.forest ============
  769. 1627.02 s [algebraic-graphs] OK: forest [] == empty
  770. 1627.02 s [algebraic-graphs] OK: forest [x] == tree x
  771. 1627.02 s [algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
  772. 1627.02 s [algebraic-graphs] OK: forest == overlays . map tree
  773. 1627.02 s [algebraic-graphs]
  774. 1627.02 s [algebraic-graphs] ============ Relation.removeVertex ============
  775. 1627.02 s [algebraic-graphs] OK: removeVertex x (vertex x) == empty
  776. 1627.02 s [algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
  777. 1627.02 s [algebraic-graphs] OK: removeVertex x (edge x x) == empty
  778. 1627.02 s [algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
  779. 1627.02 s [algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
  780. 1627.02 s [algebraic-graphs]
  781. 1627.02 s [algebraic-graphs] ============ Relation.removeEdge ============
  782. 1627.02 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
  783. 1627.02 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  784. 1627.02 s [algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
  785. 1627.02 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  786. 1627.02 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  787. 1627.02 s [algebraic-graphs]
  788. 1627.02 s [algebraic-graphs] ============ Relation.replaceVertex ============
  789. 1627.02 s [algebraic-graphs] OK: replaceVertex x x == id
  790. 1627.02 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  791. 1627.02 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  792. 1627.02 s [algebraic-graphs]
  793. 1627.02 s [algebraic-graphs] ============ Relation.mergeVertices ============
  794. 1627.02 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  795. 1649.12 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  796. 1649.12 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  797. 1649.16 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  798. 1649.16 s [algebraic-graphs]
  799. 1649.16 s [algebraic-graphs] ============ Relation.transpose ============
  800. 1649.16 s [algebraic-graphs] OK: transpose empty == empty
  801. 1649.16 s [algebraic-graphs] OK: transpose (vertex x) == vertex x
  802. 1649.16 s [algebraic-graphs] OK: transpose (edge x y) == edge y x
  803. 1649.16 s [algebraic-graphs] OK: transpose . transpose == id
  804. 1649.16 s [algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
  805. 1649.16 s [algebraic-graphs]
  806. 1649.16 s [algebraic-graphs] ============ Relation.gmap ============
  807. 1649.16 s [algebraic-graphs] OK: gmap f empty == empty
  808. 1649.16 s [algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
  809. 1649.16 s [algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
  810. 1649.16 s [algebraic-graphs] OK: gmap id == id
  811. 1649.16 s [algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
  812. 1649.16 s [algebraic-graphs]
  813. 1649.16 s [algebraic-graphs] ============ Relation.induce ============
  814. 1649.16 s [algebraic-graphs] OK: induce (const True ) x == x
  815. 1649.16 s [algebraic-graphs] OK: induce (const False) x == empty
  816. 1649.16 s [algebraic-graphs] OK: induce (/= x) == removeVertex x
  817. 1649.16 s [algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
  818. 1649.16 s [algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
  819. 1649.16 s [algebraic-graphs]
  820. 1649.16 s [algebraic-graphs] ============ Relation.compose ============
  821. 1649.16 s [algebraic-graphs] OK: compose empty x == empty
  822. 1649.16 s [algebraic-graphs] OK: compose x empty == empty
  823. 1649.16 s [algebraic-graphs] OK: compose (vertex x) y == empty
  824. 1649.16 s [algebraic-graphs] OK: compose x (vertex y) == empty
  825. 1649.16 s [algebraic-graphs] OK: compose x (compose y z) == compose (compose x y) z
  826. 1649.16 s [algebraic-graphs] OK: compose x (overlay y z) == overlay (compose x y) (compose x z)
  827. 1649.16 s [algebraic-graphs] OK: compose (overlay x y) z == overlay (compose x z) (compose y z)
  828. 1649.16 s [algebraic-graphs] OK: compose (edge x y) (edge y z) == edge x z
  829. 1649.16 s [algebraic-graphs] OK: compose (path [1..5]) (path [1..5]) == edges [(1,3),(2,4),(3,5)]
  830. 1649.16 s [algebraic-graphs] OK: compose (circuit [1..5]) (circuit [1..5]) == circuit [1,3,5,2,4]
  831. 1649.16 s [algebraic-graphs]
  832. 1649.16 s [algebraic-graphs] ============ Relation.closure ============
  833. 1649.16 s [algebraic-graphs] OK: closure empty == empty
  834. 1649.16 s [algebraic-graphs] OK: closure (vertex x) == edge x x
  835. 1649.16 s [algebraic-graphs] OK: closure (edge x x) == edge x x
  836. 1649.16 s [algebraic-graphs] OK: closure (edge x y) == edges [(x,x), (x,y), (y,y)]
  837. 1649.16 s [algebraic-graphs] OK: closure (path $ nub xs) == reflexiveClosure (clique $ nub xs)
  838. 1649.16 s [algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
  839. 1649.16 s [algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
  840. 1649.16 s [algebraic-graphs] OK: closure . closure == closure
  841. 1649.16 s [algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
  842. 1649.16 s [algebraic-graphs]
  843. 1649.16 s [algebraic-graphs] ============ Relation.reflexiveClosure ============
  844. 1649.16 s [algebraic-graphs] OK: reflexiveClosure empty == empty
  845. 1649.16 s [algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
  846. 1649.16 s [algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
  847. 1649.16 s [algebraic-graphs] OK: reflexiveClosure (edge x y) == edges [(x,x), (x,y), (y,y)]
  848. 1649.16 s [algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
  849. 1649.16 s [algebraic-graphs]
  850. 1649.16 s [algebraic-graphs] ============ Relation.symmetricClosure ============
  851. 1649.16 s [algebraic-graphs] OK: symmetricClosure empty == empty
  852. 1649.16 s [algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
  853. 1649.16 s [algebraic-graphs] OK: symmetricClosure (edge x y) == edges [(x,y), (y,x)]
  854. 1649.16 s [algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
  855. 1649.16 s [algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
  856. 1649.16 s [algebraic-graphs]
  857. 1649.16 s [algebraic-graphs] ============ Relation.transitiveClosure ============
  858. 1649.16 s [algebraic-graphs] OK: transitiveClosure empty == empty
  859. 1649.16 s [algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
  860. 1649.16 s [algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
  861. 1649.16 s [algebraic-graphs] OK: transitiveClosure (path $ nub xs) == clique (nub $ xs)
  862. 1649.16 s [algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
  863. 1649.16 s [algebraic-graphs]
  864. 1649.16 s [algebraic-graphs] ============ Relation.induceJust ============
  865. 1649.16 s [algebraic-graphs] OK: induceJust (vertex Nothing) == empty
  866. 1649.16 s [algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
  867. 1649.16 s [algebraic-graphs] OK: induceJust . gmap Just == id
  868. 1649.16 s [algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
  869. 1649.16 s [algebraic-graphs]
  870. 1649.16 s [algebraic-graphs] ============ ReflexiveRelation ============
  871. 1649.16 s [algebraic-graphs] OK: Axioms of reflexive graphs
  872. 1649.16 s [algebraic-graphs]
  873. 1649.16 s [algebraic-graphs] ============ TransitiveRelation ============
  874. 1649.16 s [algebraic-graphs] OK: Axioms of transitive graphs
  875. 1649.16 s [algebraic-graphs] OK: path xs == (clique xs :: TransitiveRelation Int)
  876. 1649.16 s [algebraic-graphs]
  877. 1649.16 s [algebraic-graphs] ============ PreorderRelation ============
  878. 1649.16 s [algebraic-graphs] OK: Axioms of preorder graphs
  879. 1649.16 s [algebraic-graphs] OK: path xs == (clique xs :: PreorderRelation Int)
  880. 1649.16 s [algebraic-graphs]
  881. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation ============
  882. 1649.16 s [algebraic-graphs] OK: Axioms of undirected graphs
  883. 1649.16 s [algebraic-graphs]
  884. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.consistent ============
  885. 1649.16 s [algebraic-graphs] OK: Consistency of the Arbitrary instance
  886. 1649.16 s [algebraic-graphs]
  887. 1649.16 s [algebraic-graphs] OK: consistent empty == True
  888. 1649.16 s [algebraic-graphs] OK: consistent (vertex x) == True
  889. 1649.16 s [algebraic-graphs] OK: consistent (overlay x y) == True
  890. 1649.16 s [algebraic-graphs] OK: consistent (connect x y) == True
  891. 1649.16 s [algebraic-graphs] OK: consistent (edge x y) == True
  892. 1649.16 s [algebraic-graphs] OK: consistent (edges xs) == True
  893. 1649.16 s [algebraic-graphs] OK: consistent (stars xs) == True
  894. 1649.16 s [algebraic-graphs]
  895. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.Show ============
  896. 1649.16 s [algebraic-graphs] OK: show (empty ) == "empty"
  897. 1649.16 s [algebraic-graphs] OK: show (1 ) == "vertex 1"
  898. 1649.16 s [algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
  899. 1649.16 s [algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
  900. 1649.16 s [algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
  901. 1649.16 s [algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
  902. 1649.16 s [algebraic-graphs]
  903. 1649.16 s [algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
  904. 1649.16 s [algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
  905. 1649.16 s [algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
  906. 1649.16 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
  907. 1649.16 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
  908. 1649.16 s [algebraic-graphs]
  909. 1649.16 s [algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
  910. 1649.16 s [algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
  911. 1649.16 s [algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
  912. 1649.16 s [algebraic-graphs]
  913. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.toSymmetric ============
  914. 1649.16 s [algebraic-graphs] OK: toSymmetric (edge 1 2) == edge 1 2
  915. 1649.16 s [algebraic-graphs] OK: toSymmetric . fromSymmetric == id
  916. 1649.16 s [algebraic-graphs] OK: fromSymmetric . toSymmetric == symmetricClosure
  917. 1649.16 s [algebraic-graphs] OK: vertexCount . toSymmetric == vertexCount
  918. 1649.16 s [algebraic-graphs] OK: (*2) . edgeCount . toSymmetric >= edgeCount
  919. 1649.16 s [algebraic-graphs]
  920. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.fromSymmetric ============
  921. 1649.16 s [algebraic-graphs] OK: fromSymmetric (edge 1 2) == edges [(1,2), (2,1)]
  922. 1649.16 s [algebraic-graphs] OK: vertexCount . fromSymmetric == vertexCount
  923. 1649.16 s [algebraic-graphs] OK: edgeCount . fromSymmetric <= (*2) . edgeCount
  924. 1649.16 s [algebraic-graphs]
  925. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.Ord ============
  926. 1649.16 s [algebraic-graphs] OK: vertex 1 < vertex 2
  927. 1649.16 s [algebraic-graphs] OK: vertex 3 < edge 1 2
  928. 1649.16 s [algebraic-graphs] OK: vertex 1 < edge 1 1
  929. 1649.16 s [algebraic-graphs] OK: edge 1 1 < edge 1 2
  930. 1649.16 s [algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
  931. 1649.16 s [algebraic-graphs] OK: edge 2 1 < edge 1 3
  932. 1649.16 s [algebraic-graphs] OK: edge 1 2 == edge 2 1
  933. 1649.16 s [algebraic-graphs] OK: x <= x + y
  934. 1649.16 s [algebraic-graphs] OK: x + y <= x * y
  935. 1649.16 s [algebraic-graphs]
  936. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.empty ============
  937. 1649.16 s [algebraic-graphs] OK: isEmpty empty == True
  938. 1649.16 s [algebraic-graphs] OK: hasVertex x empty == False
  939. 1649.16 s [algebraic-graphs] OK: vertexCount empty == 0
  940. 1649.16 s [algebraic-graphs] OK: edgeCount empty == 0
  941. 1649.16 s [algebraic-graphs]
  942. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.vertex ============
  943. 1649.16 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  944. 1649.16 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  945. 1649.16 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  946. 1649.16 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  947. 1649.16 s [algebraic-graphs]
  948. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.edge ============
  949. 1649.16 s [algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
  950. 1649.16 s [algebraic-graphs] OK: edge x y == edge y x
  951. 1649.16 s [algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
  952. 1649.16 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  953. 1649.16 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  954. 1649.16 s [algebraic-graphs] OK: vertexCount (edge 1 1) == 1
  955. 1649.16 s [algebraic-graphs] OK: vertexCount (edge 1 2) == 2
  956. 1649.16 s [algebraic-graphs]
  957. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.overlay ============
  958. 1649.16 s [algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
  959. 1649.16 s [algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
  960. 1649.16 s [algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
  961. 1649.16 s [algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
  962. 1649.16 s [algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
  963. 1649.16 s [algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
  964. 1649.16 s [algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
  965. 1649.16 s [algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
  966. 1649.16 s [algebraic-graphs]
  967. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.connect ============
  968. 1649.16 s [algebraic-graphs] OK: connect x y == connect y x
  969. 1649.16 s [algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
  970. 1649.16 s [algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
  971. 1649.16 s [algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
  972. 1649.16 s [algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
  973. 1649.16 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
  974. 1649.16 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
  975. 1649.16 s [algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
  976. 1649.16 s [algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
  977. 1649.16 s [algebraic-graphs] OK: vertexCount (connect 1 2) == 2
  978. 1649.16 s [algebraic-graphs] OK: edgeCount (connect 1 2) == 1
  979. 1649.16 s [algebraic-graphs]
  980. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.vertices ============
  981. 1649.16 s [algebraic-graphs] OK: vertices [] == empty
  982. 1649.16 s [algebraic-graphs] OK: vertices [x] == vertex x
  983. 1649.16 s [algebraic-graphs] OK: vertices == overlays . map vertex
  984. 1649.16 s [algebraic-graphs] OK: hasVertex x . vertices == elem x
  985. 1649.16 s [algebraic-graphs] OK: vertexCount . vertices == length . nub
  986. 1649.16 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  987. 1649.16 s [algebraic-graphs]
  988. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.edges ============
  989. 1649.16 s [algebraic-graphs] OK: edges [] == empty
  990. 1649.16 s [algebraic-graphs] OK: edges [(x,y)] == edge x y
  991. 1649.16 s [algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
  992. 1649.16 s [algebraic-graphs]
  993. 1649.16 s [algebraic-graphs] ============ Symmetric.Relation.overlays ============
  994. 1649.16 s [algebraic-graphs] OK: overlays [] == empty
  995. 1659.69 s [algebraic-graphs] OK: overlays [x] == x
  996. 1659.72 s [algebraic-graphs] OK: overlays [x,y] == overlay x y
  997. 1659.72 s [algebraic-graphs] OK: overlays == foldr overlay empty
  998. 1659.72 s [algebraic-graphs] OK: isEmpty . overlays == all isEmpty
  999. 1659.72 s [algebraic-graphs]
  1000. 1659.72 s [algebraic-graphs] ============ Symmetric.Relation.connects ============
  1001. 1659.72 s [algebraic-graphs] OK: connects [] == empty
  1002. 1659.72 s [algebraic-graphs] OK: connects [x] == x
  1003. 1659.72 s [algebraic-graphs] OK: connects [x,y] == connect x y
  1004. 1659.72 s [algebraic-graphs] OK: connects == foldr connect empty
  1005. 1659.72 s [algebraic-graphs] OK: isEmpty . connects == all isEmpty
  1006. 1659.72 s [algebraic-graphs] OK: connects == connects . reverse
  1007. 1659.72 s [algebraic-graphs]
  1008. 1659.72 s [algebraic-graphs] ============ Symmetric.Relation.isSubgraphOf ============
  1009. 1659.72 s [algebraic-graphs] OK: isSubgraphOf empty x == True
  1010. 1659.72 s [algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
  1011. 1659.72 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  1012. 1659.72 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  1013. 1659.72 s [algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
  1014. 1659.72 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  1015. 1659.72 s [algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
  1016. 1659.72 s [algebraic-graphs]
  1017. 1659.72 s [algebraic-graphs] ============ Symmetric.Relation.toGraph et al. ============
  1018. 1659.72 s [algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
  1019. 1659.72 s [algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
  1020. 1659.72 s [algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
  1021. 1659.72 s [algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
  1022. 1659.72 s [algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
  1023. 1659.72 s [algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
  1024. 1659.72 s [algebraic-graphs] OK: vertexCount == Set.size . vertexSet
  1025. 1659.72 s [algebraic-graphs] OK: edgeCount == Set.size . edgeSet
  1026. 1659.72 s [algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
  1027. 1659.72 s [algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
  1028. 1659.72 s [algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
  1029. 1659.72 s [algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
  1030. 1659.72 s [algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
  1031. 1659.72 s [algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
  1032. 1659.72 s [algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
  1033. 1659.72 s [algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
  1034. 1659.72 s [algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
  1035. 1659.72 s [algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
  1036. 1659.72 s [algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
  1037. 1659.72 s [algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
  1038. 1659.72 s [algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
  1039. 1659.72 s [algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
  1040. 1659.72 s [algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
  1041. 1659.72 s [algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
  1042. 1659.72 s [algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
  1043. 1659.72 s [algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
  1044. 1659.72 s [algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
  1045. 1659.72 s [algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
  1046. 1659.72 s [algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
  1047. 1659.72 s [algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
  1048. 1659.72 s [algebraic-graphs]
  1049. 1659.72 s [algebraic-graphs] ============ Symmetric.Relation.isEmpty ============
  1050. 1659.72 s [algebraic-graphs] OK: isEmpty empty == True
  1051. 1659.72 s [algebraic-graphs] OK: isEmpty (overlay empty empty) == True
  1052. 1659.72 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  1053. 1659.72 s [algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
  1054. 1659.72 s [algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
  1055. 1659.72 s [algebraic-graphs]
  1056. 1659.72 s [algebraic-graphs] ============ Symmetric.Relation.hasVertex ============
  1057. 1659.72 s [algebraic-graphs] OK: hasVertex x empty == False
  1058. 1659.72 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  1059. 1659.72 s [algebraic-graphs] OK: hasVertex x . removeVertex x == const False
  1060. 1659.72 s [algebraic-graphs]
  1061. 1659.72 s [algebraic-graphs] ============ Symmetric.Relation.hasEdge ============
  1062. 1659.72 s [algebraic-graphs] OK: hasEdge x y empty == False
  1063. 1659.72 s [algebraic-graphs] OK: hasEdge x y (vertex z) == False
  1064. 1659.72 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  1065. 1659.73 s [algebraic-graphs] OK: hasEdge x y (edge y x) == True
  1066. 1659.73 s [algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
  1067. 1659.73 s [algebraic-graphs] OK: hasEdge x y == elem (min x y, max x y) . edgeList
  1068. 1659.73 s [algebraic-graphs]
  1069. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.vertexCount ============
  1070. 1659.73 s [algebraic-graphs] OK: vertexCount empty == 0
  1071. 1659.73 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  1072. 1659.73 s [algebraic-graphs] OK: vertexCount == length . vertexList
  1073. 1659.73 s [algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
  1074. 1659.73 s [algebraic-graphs]
  1075. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.edgeCount ============
  1076. 1659.73 s [algebraic-graphs] OK: edgeCount empty == 0
  1077. 1659.73 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  1078. 1659.73 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  1079. 1659.73 s [algebraic-graphs] OK: edgeCount == length . edgeList
  1080. 1659.73 s [algebraic-graphs]
  1081. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.vertexList ============
  1082. 1659.73 s [algebraic-graphs] OK: vertexList empty == []
  1083. 1659.73 s [algebraic-graphs] OK: vertexList (vertex x) == [x]
  1084. 1659.73 s [algebraic-graphs] OK: vertexList . vertices == nub . sort
  1085. 1659.73 s [algebraic-graphs]
  1086. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.vertexSet ============
  1087. 1659.73 s [algebraic-graphs] OK: vertexSet empty == Set.empty
  1088. 1659.73 s [algebraic-graphs] OK: vertexSet . vertex == Set.singleton
  1089. 1659.73 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  1090. 1659.73 s [algebraic-graphs]
  1091. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.vertexIntSet ============
  1092. 1659.73 s [algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
  1093. 1659.73 s [algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
  1094. 1659.73 s [algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
  1095. 1659.73 s [algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
  1096. 1659.73 s [algebraic-graphs]
  1097. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.edgeList ============
  1098. 1659.73 s [algebraic-graphs] OK: edgeList empty == []
  1099. 1659.73 s [algebraic-graphs] OK: edgeList (vertex x) == []
  1100. 1659.73 s [algebraic-graphs] OK: edgeList (edge x y) == [(min x y, max y x)]
  1101. 1659.73 s [algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(1,2), (2,3)]
  1102. 1659.73 s [algebraic-graphs]
  1103. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.edgeSet ============
  1104. 1659.73 s [algebraic-graphs] OK: edgeSet empty == Set.empty
  1105. 1659.73 s [algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
  1106. 1659.73 s [algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (min x y, max x y)
  1107. 1659.73 s [algebraic-graphs]
  1108. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.adjacencyList ============
  1109. 1659.73 s [algebraic-graphs] OK: adjacencyList empty == []
  1110. 1659.73 s [algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
  1111. 1659.73 s [algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [1])]
  1112. 1659.73 s [algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, [2]), (2, [1,3]), (3, [2])]
  1113. 1659.73 s [algebraic-graphs]
  1114. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.neighbours ============
  1115. 1659.73 s [algebraic-graphs] OK: neighbours x empty == Set.empty
  1116. 1659.73 s [algebraic-graphs] OK: neighbours x (vertex x) == Set.empty
  1117. 1659.73 s [algebraic-graphs] OK: neighbours x (edge x y) == Set.fromList [y]
  1118. 1659.73 s [algebraic-graphs] OK: neighbours y (edge x y) == Set.fromList [x]
  1119. 1659.73 s [algebraic-graphs]
  1120. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.path ============
  1121. 1659.73 s [algebraic-graphs] OK: path [] == empty
  1122. 1659.73 s [algebraic-graphs] OK: path [x] == vertex x
  1123. 1659.73 s [algebraic-graphs] OK: path [x,y] == edge x y
  1124. 1659.73 s [algebraic-graphs] OK: path == path . reverse
  1125. 1659.73 s [algebraic-graphs]
  1126. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.circuit ============
  1127. 1659.73 s [algebraic-graphs] OK: circuit [] == empty
  1128. 1659.73 s [algebraic-graphs] OK: circuit [x] == edge x x
  1129. 1659.73 s [algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
  1130. 1659.73 s [algebraic-graphs] OK: circuit == circuit . reverse
  1131. 1659.73 s [algebraic-graphs]
  1132. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.clique ============
  1133. 1659.73 s [algebraic-graphs] OK: clique [] == empty
  1134. 1659.73 s [algebraic-graphs] OK: clique [x] == vertex x
  1135. 1659.73 s [algebraic-graphs] OK: clique [x,y] == edge x y
  1136. 1659.73 s [algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
  1137. 1659.73 s [algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
  1138. 1659.73 s [algebraic-graphs] OK: clique == clique . reverse
  1139. 1659.73 s [algebraic-graphs]
  1140. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.biclique ============
  1141. 1659.73 s [algebraic-graphs] OK: biclique [] [] == empty
  1142. 1659.73 s [algebraic-graphs] OK: biclique [x] [] == vertex x
  1143. 1659.73 s [algebraic-graphs] OK: biclique [] [y] == vertex y
  1144. 1659.73 s [algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  1145. 1659.73 s [algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
  1146. 1659.73 s [algebraic-graphs]
  1147. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.star ============
  1148. 1659.73 s [algebraic-graphs] OK: star x [] == vertex x
  1149. 1659.73 s [algebraic-graphs] OK: star x [y] == edge x y
  1150. 1659.73 s [algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
  1151. 1659.73 s [algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
  1152. 1659.73 s [algebraic-graphs]
  1153. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.stars ============
  1154. 1659.73 s [algebraic-graphs] OK: stars [] == empty
  1155. 1659.73 s [algebraic-graphs] OK: stars [(x, [])] == vertex x
  1156. 1659.73 s [algebraic-graphs] OK: stars [(x, [y])] == edge x y
  1157. 1659.73 s [algebraic-graphs] OK: stars [(x, ys)] == star x ys
  1158. 1659.73 s [algebraic-graphs] OK: stars == overlays . map (uncurry star)
  1159. 1659.73 s [algebraic-graphs] OK: stars . adjacencyList == id
  1160. 1659.73 s [algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
  1161. 1659.73 s [algebraic-graphs]
  1162. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.tree ============
  1163. 1659.73 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  1164. 1659.73 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
  1165. 1659.73 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  1166. 1659.73 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
  1167. 1659.73 s [algebraic-graphs]
  1168. 1659.73 s [algebraic-graphs] ============ Symmetric.Relation.forest ============
  1169. 1659.73 s [algebraic-graphs] OK: forest [] == empty
  1170. 1665.68 s [algebraic-graphs] OK: forest [x] == tree x
  1171. 1665.68 s [algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
  1172. 1665.72 s [algebraic-graphs] OK: forest == overlays . map tree
  1173. 1665.72 s [algebraic-graphs]
  1174. 1665.72 s [algebraic-graphs] ============ Symmetric.Relation.removeVertex ============
  1175. 1665.72 s [algebraic-graphs] OK: removeVertex x (vertex x) == empty
  1176. 1665.72 s [algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
  1177. 1665.72 s [algebraic-graphs] OK: removeVertex x (edge x x) == empty
  1178. 1665.72 s [algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
  1179. 1665.72 s [algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
  1180. 1665.72 s [algebraic-graphs]
  1181. 1665.72 s [algebraic-graphs] ============ Symmetric.Relation.removeEdge ============
  1182. 1665.72 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
  1183. 1665.72 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  1184. 1665.72 s [algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
  1185. 1665.72 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  1186. 1665.72 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  1187. 1665.72 s [algebraic-graphs] OK: removeEdge x y == removeEdge y x
  1188. 1665.72 s [algebraic-graphs]
  1189. 1665.72 s [algebraic-graphs] ============ Symmetric.Relation.replaceVertex ============
  1190. 1665.72 s [algebraic-graphs] OK: replaceVertex x x == id
  1191. 1665.72 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  1192. 1665.72 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  1193. 1665.72 s [algebraic-graphs]
  1194. 1665.72 s [algebraic-graphs] ============ Symmetric.Relation.mergeVertices ============
  1195. 1665.72 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  1196. 1665.72 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  1197. 1665.72 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  1198. 1665.72 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  1199. 1665.72 s [algebraic-graphs]
  1200. 1665.72 s [algebraic-graphs] ============ Symmetric.Relation.gmap ============
  1201. 1665.72 s [algebraic-graphs] OK: gmap f empty == empty
  1202. 1665.72 s [algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
  1203. 1665.72 s [algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
  1204. 1665.72 s [algebraic-graphs] OK: gmap id == id
  1205. 1665.72 s [algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
  1206. 1665.72 s [algebraic-graphs]
  1207. 1665.72 s [algebraic-graphs] ============ Symmetric.Relation.induce ============
  1208. 1665.72 s [algebraic-graphs] OK: induce (const True ) x == x
  1209. 1665.72 s [algebraic-graphs] OK: induce (const False) x == empty
  1210. 1665.72 s [algebraic-graphs] OK: induce (/= x) == removeVertex x
  1211. 1665.72 s [algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
  1212. 1665.72 s [algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
  1213. 1665.72 s [algebraic-graphs]
  1214. 1665.72 s [algebraic-graphs] ============ Symmetric.Relation.induceJust ============
  1215. 1665.72 s [algebraic-graphs] OK: induceJust (vertex Nothing) == empty
  1216. 1665.72 s [algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
  1217. 1665.72 s [algebraic-graphs] OK: induceJust . gmap Just == id
  1218. 1665.72 s [algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
  1219. 1665.72 s [algebraic-graphs]
  1220. 1665.72 s [algebraic-graphs] ============ Example.Todo (Holiday) ============
  1221. 1665.72 s [algebraic-graphs] OK: A todo list is semantically Maybe [a]
  1222. 1665.72 s [algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
  1223. 1665.72 s [algebraic-graphs] OK: The connect operator (*) adds dependency between items
  1224. 1665.72 s [algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
  1225. 1665.72 s [algebraic-graphs] OK: Introduce item priority to schedule the todo list
  1226. 1665.72 s [algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
  1227. 1665.72 s [algebraic-graphs]
  1228. 1665.72 s [algebraic-graphs] ============ Example.Todo (Commandline) ============
  1229. 1665.72 s [algebraic-graphs] OK: The pull connect operator maintains command line semantics
  1230. 1665.72 s [algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
  1231. 1665.72 s [algebraic-graphs] OK: The usual connect operator breaks semantics
  1232. 1665.72 s [algebraic-graphs] OK: Transform command lines by adding optimisation flag
  1233. 1665.72 s [algebraic-graphs]
  1234. 1665.72 s [algebraic-graphs] ============ Typed ============
  1235. 1665.72 s [algebraic-graphs]
  1236. 1665.72 s [algebraic-graphs] ============ Typed.fromAdjacencyMap ============
  1237. 1665.72 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
  1238. 1665.72 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
  1239. 1665.72 s [algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
  1240. 1665.72 s [algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
  1241. 1665.72 s [algebraic-graphs]
  1242. 1665.72 s [algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
  1243. 1665.72 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
  1244. 1665.72 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
  1245. 1665.72 s [algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
  1246. 1665.72 s [algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
  1247. 1665.72 s [algebraic-graphs]
  1248. 1665.72 s [algebraic-graphs] ============ Typed.dfsForest ============
  1249. 1665.72 s [algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
  1250. 1665.72 s [algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
  1251. 1665.72 s [algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
  1252. 1665.72 s [algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
  1253. 1665.72 s [algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
  1254. 1665.72 s [algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
  1255. 1665.72 s [algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
  1256. 1665.72 s [algebraic-graphs]
  1257. 1665.72 s [algebraic-graphs] ============ Typed.dfsForestFrom ============
  1258. 1665.72 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
  1259. 1665.72 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
  1260. 1665.72 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
  1261. 1665.72 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
  1262. 1665.72 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
  1263. 1665.72 s [algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
  1264. 1665.72 s [algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
  1265. 1665.72 s [algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
  1266. 1665.72 s [algebraic-graphs] OK: dfsForestFrom % x $ [] == []
  1267. 1665.72 s [algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
  1268. 1665.72 s [algebraic-graphs]
  1269. 1665.72 s [algebraic-graphs] ============ Typed.dfs ============
  1270. 1665.72 s [algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
  1271. 1665.72 s [algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
  1272. 1665.72 s [algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
  1273. 1665.72 s [algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
  1274. 1665.72 s [algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
  1275. 1665.72 s [algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
  1276. 1665.72 s [algebraic-graphs] OK: dfs % x $ [] == []
  1277. 1665.72 s [algebraic-graphs]
  1278. 1665.72 s [algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
  1279. 1665.72 s [algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
  1280. 1665.72 s [algebraic-graphs]
  1281. 1665.72 s [algebraic-graphs] ============ Typed.topSort ============
  1282. 1665.72 s [algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
  1283. 1665.72 s [algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
  1284. 1665.72 s [algebraic-graphs]
  1285. 1665.72 s [algebraic-graphs] ============ Graph.Undirected ============
  1286. 1665.72 s [algebraic-graphs] OK: Axioms of undirected graphs
  1287. 1665.72 s [algebraic-graphs]
  1288. 1665.72 s [algebraic-graphs] ============ Graph.Undirected.Show ============
  1289. 1665.72 s [algebraic-graphs] OK: show (empty ) == "empty"
  1290. 1665.72 s [algebraic-graphs] OK: show (1 ) == "vertex 1"
  1291. 1665.72 s [algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
  1292. 1665.72 s [algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
  1293. 1665.72 s [algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
  1294. 1665.72 s [algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
  1295. 1665.72 s [algebraic-graphs]
  1296. 1665.72 s [algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
  1297. 1665.72 s [algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
  1298. 1665.72 s [algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
  1299. 1665.72 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
  1300. 1665.72 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
  1301. 1665.72 s [algebraic-graphs]
  1302. 1665.72 s [algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
  1303. 1665.72 s [algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
  1304. 1665.72 s [algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
  1305. 1665.72 s [algebraic-graphs]
  1306. 1665.72 s [algebraic-graphs] ============ Graph.Undirected.toUndirected ============
  1307. 1665.72 s [algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
  1308. 1665.72 s [algebraic-graphs] OK: toUndirected . fromUndirected == id
  1309. 1665.72 s [algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
  1310. 1665.72 s [algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
  1311. 1665.72 s [algebraic-graphs]
  1312. 1665.72 s [algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
  1313. 1665.72 s [algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
  1314. 1665.72 s [algebraic-graphs] OK: toUndirected . fromUndirected == id
  1315. 1665.72 s [algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
  1316. 1665.72 s [algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
  1317. 1665.72 s [algebraic-graphs]
  1318. 1665.72 s [algebraic-graphs] ============ Graph.Undirected.complement ================
  1319. 1665.72 s [algebraic-graphs] OK: complement empty == empty
  1320. 1665.72 s [algebraic-graphs] OK: complement (vertex x) == vertex x
  1321. 1665.72 s [algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
  1322. 1665.72 s [algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
  1323. 1665.72 s [algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
  1324. 1665.72 s [algebraic-graphs] OK: complement . complement == id
  1325. 1665.72 s [algebraic-graphs]
  1326. 1665.72 s [algebraic-graphs] ============ Graph.Undirected.Ord ============
  1327. 1665.72 s [algebraic-graphs] OK: vertex 1 < vertex 2
  1328. 1665.72 s [algebraic-graphs] OK: vertex 3 < edge 1 2
  1329. 1665.72 s [algebraic-graphs] OK: vertex 1 < edge 1 1
  1330. 1665.72 s [algebraic-graphs] OK: edge 1 1 < edge 1 2
  1331. 1665.72 s [algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
  1332. 1665.72 s [algebraic-graphs] OK: edge 2 1 < edge 1 3
  1333. 1665.72 s [algebraic-graphs] OK: edge 1 2 == edge 2 1
  1334. 1665.72 s [algebraic-graphs] OK: x <= x + y
  1335. 1665.72 s [algebraic-graphs] OK: x + y <= x * y
  1336. 1665.72 s [algebraic-graphs]
  1337. 1665.72 s [algebraic-graphs] ============ Graph.Undirected.empty ============
  1338. 1665.72 s [algebraic-graphs] OK: isEmpty empty == True
  1339. 1665.72 s [algebraic-graphs] OK: hasVertex x empty == False
  1340. 1665.72 s [algebraic-graphs] OK: vertexCount empty == 0
  1341. 1665.72 s [algebraic-graphs] OK: edgeCount empty == 0
  1342. 1665.72 s [algebraic-graphs]
  1343. 1665.72 s [algebraic-graphs] ============ Graph.Undirected.vertex ============
  1344. 1665.72 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  1345. 1665.72 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  1346. 1665.72 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  1347. 1665.72 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  1348. 1665.72 s [algebraic-graphs]
  1349. 1665.72 s [algebraic-graphs] ============ Graph.Undirected.edge ============
  1350. 1665.72 s [algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
  1351. 1665.72 s [algebraic-graphs] OK: edge x y == edge y x
  1352. 1673.29 s [algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
  1353. 1673.29 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  1354. 1673.29 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  1355. 1673.32 s [algebraic-graphs] OK: vertexCount (edge 1 1) == 1
  1356. 1673.32 s [algebraic-graphs] OK: vertexCount (edge 1 2) == 2
  1357. 1673.32 s [algebraic-graphs]
  1358. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.overlay ============
  1359. 1673.32 s [algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
  1360. 1673.32 s [algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
  1361. 1673.32 s [algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
  1362. 1673.32 s [algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
  1363. 1673.32 s [algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
  1364. 1673.32 s [algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
  1365. 1673.32 s [algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
  1366. 1673.32 s [algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
  1367. 1673.32 s [algebraic-graphs]
  1368. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.connect ============
  1369. 1673.32 s [algebraic-graphs] OK: connect x y == connect y x
  1370. 1673.32 s [algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
  1371. 1673.32 s [algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
  1372. 1673.32 s [algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
  1373. 1673.32 s [algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
  1374. 1673.32 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
  1375. 1673.32 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
  1376. 1673.32 s [algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
  1377. 1673.32 s [algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
  1378. 1673.32 s [algebraic-graphs] OK: vertexCount (connect 1 2) == 2
  1379. 1673.32 s [algebraic-graphs] OK: edgeCount (connect 1 2) == 1
  1380. 1673.32 s [algebraic-graphs]
  1381. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.vertices ============
  1382. 1673.32 s [algebraic-graphs] OK: vertices [] == empty
  1383. 1673.32 s [algebraic-graphs] OK: vertices [x] == vertex x
  1384. 1673.32 s [algebraic-graphs] OK: vertices == overlays . map vertex
  1385. 1673.32 s [algebraic-graphs] OK: hasVertex x . vertices == elem x
  1386. 1673.32 s [algebraic-graphs] OK: vertexCount . vertices == length . nub
  1387. 1673.32 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  1388. 1673.32 s [algebraic-graphs]
  1389. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.edges ============
  1390. 1673.32 s [algebraic-graphs] OK: edges [] == empty
  1391. 1673.32 s [algebraic-graphs] OK: edges [(x,y)] == edge x y
  1392. 1673.32 s [algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
  1393. 1673.32 s [algebraic-graphs]
  1394. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.overlays ============
  1395. 1673.32 s [algebraic-graphs] OK: overlays [] == empty
  1396. 1673.32 s [algebraic-graphs] OK: overlays [x] == x
  1397. 1673.32 s [algebraic-graphs] OK: overlays [x,y] == overlay x y
  1398. 1673.32 s [algebraic-graphs] OK: overlays == foldr overlay empty
  1399. 1673.32 s [algebraic-graphs] OK: isEmpty . overlays == all isEmpty
  1400. 1673.32 s [algebraic-graphs]
  1401. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.connects ============
  1402. 1673.32 s [algebraic-graphs] OK: connects [] == empty
  1403. 1673.32 s [algebraic-graphs] OK: connects [x] == x
  1404. 1673.32 s [algebraic-graphs] OK: connects [x,y] == connect x y
  1405. 1673.32 s [algebraic-graphs] OK: connects == foldr connect empty
  1406. 1673.32 s [algebraic-graphs] OK: isEmpty . connects == all isEmpty
  1407. 1673.32 s [algebraic-graphs] OK: connects == connects . reverse
  1408. 1673.32 s [algebraic-graphs]
  1409. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
  1410. 1673.32 s [algebraic-graphs] OK: isSubgraphOf empty x == True
  1411. 1673.32 s [algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
  1412. 1673.32 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  1413. 1673.32 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  1414. 1673.32 s [algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
  1415. 1673.32 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  1416. 1673.32 s [algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
  1417. 1673.32 s [algebraic-graphs]
  1418. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.path ============
  1419. 1673.32 s [algebraic-graphs] OK: path [] == empty
  1420. 1673.32 s [algebraic-graphs] OK: path [x] == vertex x
  1421. 1673.32 s [algebraic-graphs] OK: path [x,y] == edge x y
  1422. 1673.32 s [algebraic-graphs] OK: path == path . reverse
  1423. 1673.32 s [algebraic-graphs]
  1424. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.circuit ============
  1425. 1673.32 s [algebraic-graphs] OK: circuit [] == empty
  1426. 1673.32 s [algebraic-graphs] OK: circuit [x] == edge x x
  1427. 1673.32 s [algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
  1428. 1673.32 s [algebraic-graphs] OK: circuit == circuit . reverse
  1429. 1673.32 s [algebraic-graphs]
  1430. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.clique ============
  1431. 1673.32 s [algebraic-graphs] OK: clique [] == empty
  1432. 1673.32 s [algebraic-graphs] OK: clique [x] == vertex x
  1433. 1673.32 s [algebraic-graphs] OK: clique [x,y] == edge x y
  1434. 1673.32 s [algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
  1435. 1673.32 s [algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
  1436. 1673.32 s [algebraic-graphs] OK: clique == clique . reverse
  1437. 1673.32 s [algebraic-graphs]
  1438. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.biclique ============
  1439. 1673.32 s [algebraic-graphs] OK: biclique [] [] == empty
  1440. 1673.32 s [algebraic-graphs] OK: biclique [x] [] == vertex x
  1441. 1673.32 s [algebraic-graphs] OK: biclique [] [y] == vertex y
  1442. 1673.32 s [algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  1443. 1673.32 s [algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
  1444. 1673.32 s [algebraic-graphs]
  1445. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.star ============
  1446. 1673.32 s [algebraic-graphs] OK: star x [] == vertex x
  1447. 1673.32 s [algebraic-graphs] OK: star x [y] == edge x y
  1448. 1673.32 s [algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
  1449. 1673.32 s [algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
  1450. 1673.32 s [algebraic-graphs]
  1451. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.stars ============
  1452. 1673.32 s [algebraic-graphs] OK: stars [] == empty
  1453. 1673.32 s [algebraic-graphs] OK: stars [(x, [])] == vertex x
  1454. 1673.32 s [algebraic-graphs] OK: stars [(x, [y])] == edge x y
  1455. 1673.32 s [algebraic-graphs] OK: stars [(x, ys)] == star x ys
  1456. 1673.32 s [algebraic-graphs] OK: stars == overlays . map (uncurry star)
  1457. 1673.32 s [algebraic-graphs] OK: stars . adjacencyList == id
  1458. 1673.32 s [algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
  1459. 1673.32 s [algebraic-graphs]
  1460. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.tree ============
  1461. 1673.32 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  1462. 1673.32 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
  1463. 1673.32 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  1464. 1673.32 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
  1465. 1673.32 s [algebraic-graphs]
  1466. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.forest ============
  1467. 1673.32 s [algebraic-graphs] OK: forest [] == empty
  1468. 1673.32 s [algebraic-graphs] OK: forest [x] == tree x
  1469. 1673.32 s [algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
  1470. 1673.32 s [algebraic-graphs] OK: forest == overlays . map tree
  1471. 1673.32 s [algebraic-graphs]
  1472. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.removeVertex ============
  1473. 1673.32 s [algebraic-graphs] OK: removeVertex x (vertex x) == empty
  1474. 1673.32 s [algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
  1475. 1673.32 s [algebraic-graphs] OK: removeVertex x (edge x x) == empty
  1476. 1673.32 s [algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
  1477. 1673.32 s [algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
  1478. 1673.32 s [algebraic-graphs]
  1479. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.removeEdge ============
  1480. 1673.32 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
  1481. 1673.32 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  1482. 1673.32 s [algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
  1483. 1673.32 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  1484. 1673.32 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  1485. 1673.32 s [algebraic-graphs] OK: removeEdge x y == removeEdge y x
  1486. 1673.32 s [algebraic-graphs]
  1487. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
  1488. 1673.32 s [algebraic-graphs] OK: replaceVertex x x == id
  1489. 1673.32 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  1490. 1673.32 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  1491. 1673.32 s [algebraic-graphs]
  1492. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
  1493. 1673.32 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  1494. 1673.32 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  1495. 1673.32 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  1496. 1673.32 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  1497. 1673.32 s [algebraic-graphs]
  1498. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.gmap ============
  1499. 1673.32 s [algebraic-graphs] OK: gmap f empty == empty
  1500. 1673.32 s [algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
  1501. 1673.32 s [algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
  1502. 1673.32 s [algebraic-graphs] OK: gmap id == id
  1503. 1673.32 s [algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
  1504. 1673.32 s [algebraic-graphs]
  1505. 1673.32 s [algebraic-graphs] ============ Graph.Undirected.induce ============
  1506. 1673.32 s [algebraic-graphs] OK: induce (const True ) x == x
  1507. 1673.32 s [algebraic-graphs] OK: induce (const False) x == empty
  1508. 1673.32 s [algebraic-graphs] OK: induce (/= x) == removeVertex x
  1509. 1673.32 s [algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
  1510. 1673.32 s [algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
  1511. 1673.32 s [algebraic-graphs]
  1512. 1673.33 s [algebraic-graphs] ============ Graph.Undirected.induceJust ============
  1513. 1673.33 s [algebraic-graphs] OK: induceJust (vertex Nothing) == empty
  1514. 1673.33 s [algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
  1515. 1673.33 s [algebraic-graphs] OK: induceJust . gmap Just == id
  1516. 1673.33 s [algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
  1517. 1673.33 s [algebraic-graphs] Test suite main: PASS
  1518. 1673.33 s [algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
  1519. 1673.33 s [algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
  1520. 1673.33 s [algebraic-graphs] checkPhase completed in 2 minutes 0 seconds
  1521. 1673.33 s [algebraic-graphs] Phase: haddockPhase
  1522. 1673.89 s [algebraic-graphs] Preprocessing library for algebraic-graphs-0.7...
  1523. 1673.89 s [algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7...
  1524. 1674.04 s [algebraic-graphs] [ 1 of 29] Compiling Algebra.Graph.AdjacencyMap ( src/Algebra/Graph/AdjacencyMap.hs, nothing ) [HIE file is missing]
  1525. 1674.32 s [algebraic-graphs] [ 2 of 29] Compiling Algebra.Graph.AdjacencyIntMap ( src/Algebra/Graph/AdjacencyIntMap.hs, nothing ) [HIE file is missing]
  1526. 1674.39 s [algebraic-graphs] [ 3 of 29] Compiling Algebra.Graph.AdjacencyIntMap.Algorithm ( src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs, nothing ) [HIE file is missing]
  1527. 1674.44 s [algebraic-graphs] [ 4 of 29] Compiling Algebra.Graph.Internal ( src/Algebra/Graph/Internal.hs, nothing ) [HIE file is missing]
  1528. 1674.54 s [algebraic-graphs] [ 5 of 29] Compiling Algebra.Graph ( src/Algebra/Graph.hs, nothing ) [HIE file is missing]
  1529. 1674.74 s [algebraic-graphs] [ 6 of 29] Compiling Algebra.Graph.HigherKinded.Class ( src/Algebra/Graph/HigherKinded/Class.hs, nothing ) [HIE file is missing]
  1530. 1674.77 s [algebraic-graphs] [ 7 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap ( src/Algebra/Graph/Bipartite/AdjacencyMap.hs, nothing ) [HIE file is missing]
  1531. 1674.88 s [algebraic-graphs] [ 8 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap.Algorithm ( src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs, nothing ) [HIE file is missing]
  1532. 1675.03 s [algebraic-graphs] [ 9 of 29] Compiling Algebra.Graph.Label ( src/Algebra/Graph/Label.hs, nothing ) [HIE file is missing]
  1533. 1675.17 s [algebraic-graphs] [10 of 29] Compiling Algebra.Graph.NonEmpty.AdjacencyMap ( src/Algebra/Graph/NonEmpty/AdjacencyMap.hs, nothing ) [HIE file is missing]
  1534. 1675.28 s [algebraic-graphs] [11 of 29] Compiling Algebra.Graph.AdjacencyMap.Algorithm ( src/Algebra/Graph/AdjacencyMap/Algorithm.hs, nothing ) [HIE file is missing]
  1535. 1675.36 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:384:43: warning: [GHC-63394] [-Wx-partial]
  1536. 1675.36 s [algebraic-graphs] In the use of ‘head’
  1537. 1675.36 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  1538. 1675.36 s [algebraic-graphs] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
  1539. 1675.36 s [algebraic-graphs] |
  1540. 1675.36 s [algebraic-graphs] 384 | exit v = do newComponent <- (v==).snd.head <$> gets boundaryStack
  1541. 1675.36 s [algebraic-graphs] | ^^^^
  1542. 1675.36 s [algebraic-graphs]
  1543. 1675.36 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:391:21: warning: [GHC-63394] [-Wx-partial]
  1544. 1675.36 s [algebraic-graphs] In the use of ‘tail’
  1545. 1675.36 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  1546. 1675.36 s [algebraic-graphs] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  1547. 1675.36 s [algebraic-graphs] |
  1548. 1675.36 s [algebraic-graphs] 391 | pth' = tail v_pth' -- Here we know that v_pth' starts with v
  1549. 1675.37 s [algebraic-graphs] | ^^^^
  1550. 1675.37 s [algebraic-graphs]
  1551. 1675.37 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:395:26: warning: [GHC-63394] [-Wx-partial]
  1552. 1675.37 s [algebraic-graphs] In the use of ‘head’
  1553. 1675.37 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  1554. 1675.37 s [algebraic-graphs] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
  1555. 1675.37 s [algebraic-graphs] |
  1556. 1675.37 s [algebraic-graphs] 395 | p_v = fst $ head bnd
  1557. 1675.37 s [algebraic-graphs] | ^^^^
  1558. 1675.37 s [algebraic-graphs]
  1559. 1675.37 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:397:21: warning: [GHC-63394] [-Wx-partial]
  1560. 1675.37 s [algebraic-graphs] In the use of ‘tail’
  1561. 1675.37 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  1562. 1675.37 s [algebraic-graphs] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  1563. 1675.37 s [algebraic-graphs] |
  1564. 1675.37 s [algebraic-graphs] 397 | bnd' = tail bnd
  1565. 1675.37 s [algebraic-graphs] | ^^^^
  1566. 1675.37 s [algebraic-graphs]
  1567. 1675.37 s [algebraic-graphs] [12 of 29] Compiling Algebra.Graph.Acyclic.AdjacencyMap ( src/Algebra/Graph/Acyclic/AdjacencyMap.hs, nothing ) [HIE file is missing]
  1568. 1675.41 s [algebraic-graphs] [13 of 29] Compiling Algebra.Graph.ToGraph ( src/Algebra/Graph/ToGraph.hs, nothing ) [HIE file is missing]
  1569. 1675.52 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1570. 1675.52 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1571. 1675.52 s [algebraic-graphs] will become an error in a future GHC release.
  1572. 1675.52 s [algebraic-graphs] Suggested fix:
  1573. 1675.52 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1574. 1675.52 s [algebraic-graphs] |
  1575. 1675.52 s [algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
  1576. 1675.52 s [algebraic-graphs] | ^
  1577. 1675.52 s [algebraic-graphs]
  1578. 1675.53 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1579. 1675.53 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1580. 1675.53 s [algebraic-graphs] will become an error in a future GHC release.
  1581. 1675.53 s [algebraic-graphs] Suggested fix:
  1582. 1675.53 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1583. 1675.53 s [algebraic-graphs] |
  1584. 1675.53 s [algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
  1585. 1675.53 s [algebraic-graphs] | ^
  1586. 1675.53 s [algebraic-graphs]
  1587. 1675.53 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1588. 1675.53 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1589. 1675.53 s [algebraic-graphs] will become an error in a future GHC release.
  1590. 1675.53 s [algebraic-graphs] Suggested fix:
  1591. 1675.53 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1592. 1675.53 s [algebraic-graphs] |
  1593. 1675.53 s [algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
  1594. 1675.53 s [algebraic-graphs] | ^
  1595. 1675.53 s [algebraic-graphs]
  1596. 1675.53 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1597. 1675.53 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1598. 1675.53 s [algebraic-graphs] will become an error in a future GHC release.
  1599. 1675.53 s [algebraic-graphs] Suggested fix:
  1600. 1675.53 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1601. 1675.53 s [algebraic-graphs] |
  1602. 1675.53 s [algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
  1603. 1675.53 s [algebraic-graphs] | ^
  1604. 1675.53 s [algebraic-graphs]
  1605. 1675.53 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1606. 1675.53 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1607. 1675.53 s [algebraic-graphs] will become an error in a future GHC release.
  1608. 1675.53 s [algebraic-graphs] Suggested fix:
  1609. 1675.53 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1610. 1675.53 s [algebraic-graphs] |
  1611. 1675.53 s [algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
  1612. 1675.53 s [algebraic-graphs] | ^
  1613. 1675.53 s [algebraic-graphs]
  1614. 1675.53 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1615. 1675.53 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1616. 1675.53 s [algebraic-graphs] will become an error in a future GHC release.
  1617. 1675.53 s [algebraic-graphs] Suggested fix:
  1618. 1675.53 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1619. 1675.53 s [algebraic-graphs] |
  1620. 1675.53 s [algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
  1621. 1675.54 s [algebraic-graphs] | ^
  1622. 1675.54 s [algebraic-graphs]
  1623. 1675.54 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1624. 1675.54 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1625. 1675.54 s [algebraic-graphs] will become an error in a future GHC release.
  1626. 1675.54 s [algebraic-graphs] Suggested fix:
  1627. 1675.54 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1628. 1675.54 s [algebraic-graphs] |
  1629. 1675.54 s [algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
  1630. 1675.54 s [algebraic-graphs] | ^
  1631. 1675.54 s [algebraic-graphs]
  1632. 1675.54 s [algebraic-graphs] [14 of 29] Compiling Algebra.Graph.Relation ( src/Algebra/Graph/Relation.hs, nothing ) [HIE file is missing]
  1633. 1675.63 s [algebraic-graphs] [15 of 29] Compiling Algebra.Graph.Relation.Symmetric ( src/Algebra/Graph/Relation/Symmetric.hs, nothing ) [HIE file is missing]
  1634. 1675.70 s [algebraic-graphs] [16 of 29] Compiling Algebra.Graph.NonEmpty ( src/Algebra/Graph/NonEmpty.hs, nothing ) [HIE file is missing]
  1635. 1675.89 s [algebraic-graphs] [17 of 29] Compiling Algebra.Graph.Labelled.AdjacencyMap ( src/Algebra/Graph/Labelled/AdjacencyMap.hs, nothing ) [HIE file is missing]
  1636. 1676.02 s [algebraic-graphs] [18 of 29] Compiling Algebra.Graph.Labelled ( src/Algebra/Graph/Labelled.hs, nothing ) [HIE file is missing]
  1637. 1676.18 s [algebraic-graphs] [19 of 29] Compiling Algebra.Graph.Labelled.Example.Network ( src/Algebra/Graph/Labelled/Example/Network.hs, nothing ) [HIE file is missing]
  1638. 1676.19 s [algebraic-graphs] [20 of 29] Compiling Algebra.Graph.Labelled.Example.Automaton ( src/Algebra/Graph/Labelled/Example/Automaton.hs, nothing ) [HIE file is missing]
  1639. 1676.21 s [algebraic-graphs] [21 of 29] Compiling Algebra.Graph.Export ( src/Algebra/Graph/Export.hs, nothing ) [HIE file is missing]
  1640. 1676.23 s [algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1641. 1676.23 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1642. 1676.23 s [algebraic-graphs] will become an error in a future GHC release.
  1643. 1676.23 s [algebraic-graphs] Suggested fix:
  1644. 1676.23 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1645. 1676.23 s [algebraic-graphs] |
  1646. 1676.23 s [algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
  1647. 1676.23 s [algebraic-graphs] | ^
  1648. 1676.23 s [algebraic-graphs]
  1649. 1676.24 s [algebraic-graphs] [22 of 29] Compiling Algebra.Graph.Export.Dot ( src/Algebra/Graph/Export/Dot.hs, nothing ) [HIE file is missing]
  1650. 1676.26 s [algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1651. 1676.26 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1652. 1676.26 s [algebraic-graphs] will become an error in a future GHC release.
  1653. 1676.26 s [algebraic-graphs] Suggested fix:
  1654. 1676.26 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1655. 1676.26 s [algebraic-graphs] |
  1656. 1676.26 s [algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
  1657. 1676.26 s [algebraic-graphs] | ^
  1658. 1676.26 s [algebraic-graphs]
  1659. 1676.26 s [algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  1660. 1676.26 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  1661. 1676.26 s [algebraic-graphs] will become an error in a future GHC release.
  1662. 1676.26 s [algebraic-graphs] Suggested fix:
  1663. 1676.26 s [algebraic-graphs] Perhaps you intended to use the ‘TypeOperators’ extension
  1664. 1676.26 s [algebraic-graphs] |
  1665. 1676.26 s [algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
  1666. 1676.26 s [algebraic-graphs] | ^
  1667. 1676.26 s [algebraic-graphs]
  1668. 1676.26 s [algebraic-graphs] [23 of 29] Compiling Algebra.Graph.Undirected ( src/Algebra/Graph/Undirected.hs, nothing ) [HIE file is missing]
  1669. 1676.32 s [algebraic-graphs] [24 of 29] Compiling Algebra.Graph.Class ( src/Algebra/Graph/Class.hs, nothing ) [HIE file is missing]
  1670. 1676.42 s [algebraic-graphs] [25 of 29] Compiling Algebra.Graph.Relation.Transitive ( src/Algebra/Graph/Relation/Transitive.hs, nothing ) [HIE file is missing]
  1671. 1676.44 s [algebraic-graphs] [26 of 29] Compiling Algebra.Graph.Relation.Reflexive ( src/Algebra/Graph/Relation/Reflexive.hs, nothing ) [HIE file is missing]
  1672. 1676.45 s [algebraic-graphs] [27 of 29] Compiling Algebra.Graph.Relation.Preorder ( src/Algebra/Graph/Relation/Preorder.hs, nothing ) [HIE file is missing]
  1673. 1676.46 s [algebraic-graphs] [28 of 29] Compiling Algebra.Graph.Example.Todo ( src/Algebra/Graph/Example/Todo.hs, nothing ) [HIE file is missing]
  1674. 1676.48 s [algebraic-graphs] [29 of 29] Compiling Data.Graph.Typed ( src/Data/Graph/Typed.hs, nothing ) [HIE file is missing]
  1675. 1676.49 s [algebraic-graphs] Haddock coverage:
  1676. 1676.50 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1677. 1676.50 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
  1678. 1676.50 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1679. 1676.50 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1680. 1676.50 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1681. 1676.50 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
  1682. 1676.56 s [algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
  1683. 1676.57 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1684. 1676.57 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
  1685. 1676.57 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1686. 1676.57 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1687. 1676.57 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1688. 1676.57 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
  1689. 1676.58 s [algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
  1690. 1676.59 s [algebraic-graphs] Warning: 'nub' is out of scope.
  1691. 1676.59 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1692. 1676.59 s [algebraic-graphs] Warning: 'sort' is out of scope.
  1693. 1676.59 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1694. 1676.59 s [algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
  1695. 1676.59 s [algebraic-graphs] Missing documentation for:
  1696. 1676.59 s [algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
  1697. 1676.59 s [algebraic-graphs] Warning: 'List' is ambiguous. It is defined
  1698. 1676.59 s [algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:18
  1699. 1676.59 s [algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:1
  1700. 1676.59 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1701. 1676.59 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1702. 1676.59 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Internal.hs:50:1
  1703. 1676.59 s [algebraic-graphs] Warning: 'IsList' is out of scope.
  1704. 1676.60 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1705. 1676.60 s [algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
  1706. 1676.60 s [algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
  1707. 1676.60 s [algebraic-graphs] * at src/Algebra/Graph.hs:1400:18
  1708. 1676.60 s [algebraic-graphs] * at src/Algebra/Graph.hs:1400:1
  1709. 1676.60 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1710. 1676.60 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1711. 1676.60 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:1400:1
  1712. 1676.60 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1713. 1676.60 s [algebraic-graphs] * at src/Algebra/Graph.hs:316:1
  1714. 1676.60 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1715. 1676.60 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1716. 1676.60 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1717. 1676.60 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:316:1
  1718. 1676.71 s [algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
  1719. 1676.71 s [algebraic-graphs] Warning: 'isEmpty' is out of scope.
  1720. 1676.71 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1721. 1676.71 s [algebraic-graphs] Warning: 'vertexCount' is out of scope.
  1722. 1676.71 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1723. 1676.71 s [algebraic-graphs] Warning: 'edgeCount' is out of scope.
  1724. 1676.71 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1725. 1676.71 s [algebraic-graphs] Warning: 'edgeList' is out of scope.
  1726. 1676.71 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1727. 1676.71 s [algebraic-graphs] Warning: 'box' is out of scope.
  1728. 1676.71 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1729. 1676.72 s [algebraic-graphs] Warning: 'adjacencyList' is out of scope.
  1730. 1676.72 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1731. 1676.72 s [algebraic-graphs] Warning: 'hasVertex' is out of scope.
  1732. 1676.72 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1733. 1676.72 s [algebraic-graphs] Warning: 'vertexSet' is out of scope.
  1734. 1676.72 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1735. 1676.72 s [algebraic-graphs] Warning: 'mplus' is out of scope.
  1736. 1676.72 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1737. 1676.72 s [algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
  1738. 1676.72 s [algebraic-graphs] Warning: 'swap' is ambiguous. It is defined
  1739. 1676.72 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
  1740. 1676.72 s [algebraic-graphs] * in ‘GHC.Internal.Data.Tuple’
  1741. 1676.72 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1742. 1676.72 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1743. 1676.72 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
  1744. 1676.73 s [algebraic-graphs] Warning: 'nub' is out of scope.
  1745. 1676.73 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1746. 1676.73 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1747. 1676.73 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  1748. 1676.73 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1749. 1676.73 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1750. 1676.73 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1751. 1676.73 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  1752. 1676.74 s [algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
  1753. 1676.74 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1754. 1676.74 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  1755. 1676.74 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1756. 1676.74 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1757. 1676.74 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1758. 1676.74 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  1759. 1676.74 s [algebraic-graphs] Warning: 'isRight' is out of scope.
  1760. 1676.74 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1761. 1676.74 s [algebraic-graphs] Warning: 'Matching' is ambiguous. It is defined
  1762. 1676.74 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:21
  1763. 1676.74 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
  1764. 1676.74 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1765. 1676.74 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1766. 1676.74 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
  1767. 1676.75 s [algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
  1768. 1676.75 s [algebraic-graphs] Warning: 'Optimum' is ambiguous. It is defined
  1769. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:20
  1770. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:1
  1771. 1676.75 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1772. 1676.75 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1773. 1676.75 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:442:1
  1774. 1676.75 s [algebraic-graphs] Warning: 'Minimum' is ambiguous. It is defined
  1775. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:21
  1776. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:1
  1777. 1676.75 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1778. 1676.75 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1779. 1676.75 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:314:1
  1780. 1676.75 s [algebraic-graphs] Warning: 'Distance' is ambiguous. It is defined
  1781. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:22
  1782. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:1
  1783. 1676.75 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1784. 1676.75 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1785. 1676.75 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:241:1
  1786. 1676.75 s [algebraic-graphs] Warning: 'Capacity' is ambiguous. It is defined
  1787. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:22
  1788. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:1
  1789. 1676.75 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1790. 1676.75 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1791. 1676.75 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:176:1
  1792. 1676.75 s [algebraic-graphs] Warning: 'Count' is ambiguous. It is defined
  1793. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:19
  1794. 1676.75 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:1
  1795. 1676.75 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1796. 1676.75 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1797. 1676.75 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:209:1
  1798. 1676.75 s [algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
  1799. 1676.76 s [algebraic-graphs] Warning: 'empty' is out of scope.
  1800. 1676.76 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1801. 1676.76 s [algebraic-graphs] Warning: 'edges' is out of scope.
  1802. 1676.76 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1803. 1676.76 s [algebraic-graphs] Warning: 'stars' is out of scope.
  1804. 1676.76 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1805. 1676.76 s [algebraic-graphs] Warning: 'AdjacencyMap' is ambiguous. It is defined
  1806. 1676.76 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:157:1
  1807. 1676.76 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
  1808. 1676.76 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1809. 1676.76 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1810. 1676.76 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
  1811. 1676.76 s [algebraic-graphs] Warning: 'isEmpty' is out of scope.
  1812. 1676.76 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1813. 1676.76 s [algebraic-graphs] Warning: 'adjacencyList' is out of scope.
  1814. 1676.76 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1815. 1676.76 s [algebraic-graphs] Warning: 'vertexList' is out of scope.
  1816. 1676.76 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1817. 1676.77 s [algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
  1818. 1676.78 s [algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
  1819. 1676.78 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
  1820. 1676.78 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
  1821. 1676.78 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1822. 1676.78 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1823. 1676.78 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
  1824. 1676.78 s [algebraic-graphs] Warning: 'edge' is ambiguous. It is defined
  1825. 1676.78 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:252:1
  1826. 1676.78 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
  1827. 1676.78 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1828. 1676.78 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1829. 1676.78 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
  1830. 1676.78 s [algebraic-graphs] Warning: 'nub' is out of scope.
  1831. 1676.78 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1832. 1676.78 s [algebraic-graphs] Warning: 'sort' is out of scope.
  1833. 1676.78 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1834. 1676.78 s [algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
  1835. 1676.78 s [algebraic-graphs] Missing documentation for:
  1836. 1676.78 s [algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
  1837. 1676.78 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1838. 1676.78 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
  1839. 1676.78 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1840. 1676.78 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1841. 1676.78 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1842. 1676.78 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
  1843. 1676.79 s [algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
  1844. 1676.79 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:143:1
  1845. 1676.79 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
  1846. 1676.79 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1847. 1676.79 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1848. 1676.79 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:239:1
  1849. 1676.79 s [algebraic-graphs] Warning: 'vertices' is ambiguous. It is defined
  1850. 1676.79 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:157:1
  1851. 1676.79 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:309:1
  1852. 1676.79 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1853. 1676.79 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1854. 1676.79 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:309:1
  1855. 1676.79 s [algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
  1856. 1676.79 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:246:1
  1857. 1676.79 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:417:1
  1858. 1676.79 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1859. 1676.79 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1860. 1676.79 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:417:1
  1861. 1676.79 s [algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
  1862. 1676.79 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:258:1
  1863. 1676.79 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:429:1
  1864. 1676.79 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1865. 1676.79 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1866. 1676.79 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:429:1
  1867. 1676.79 s [algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
  1868. 1676.80 s [algebraic-graphs] Warning: 'foldg' is ambiguous. It is defined
  1869. 1676.80 s [algebraic-graphs] * at src/Algebra/Graph.hs:482:1
  1870. 1676.80 s [algebraic-graphs] * at src/Algebra/Graph/ToGraph.hs:98:5
  1871. 1676.80 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1872. 1676.80 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1873. 1676.80 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/ToGraph.hs:98:5
  1874. 1676.80 s [algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
  1875. 1676.80 s [algebraic-graphs] Warning: 'Relation' is ambiguous. It is defined
  1876. 1676.80 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:19
  1877. 1676.80 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:1
  1878. 1676.80 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1879. 1676.80 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1880. 1676.80 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:157:1
  1881. 1676.80 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1882. 1676.80 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:243:1
  1883. 1676.80 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1884. 1676.80 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1885. 1676.80 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1886. 1676.80 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:243:1
  1887. 1676.81 s [algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
  1888. 1676.81 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1889. 1676.81 s [algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
  1890. 1676.82 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1891. 1676.82 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:188:1
  1892. 1676.82 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1893. 1676.82 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1894. 1676.82 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1895. 1676.82 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:188:1
  1896. 1676.83 s [algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
  1897. 1676.83 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:423:1
  1898. 1676.83 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:372:1
  1899. 1676.83 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1900. 1676.83 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1901. 1676.83 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:372:1
  1902. 1676.83 s [algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
  1903. 1676.83 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:435:1
  1904. 1676.83 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:384:1
  1905. 1676.83 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1906. 1676.83 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1907. 1676.83 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:384:1
  1908. 1676.83 s [algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
  1909. 1676.84 s [algebraic-graphs] Warning: 'vertexList' is out of scope.
  1910. 1676.84 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1911. 1676.85 s [algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
  1912. 1676.85 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1913. 1676.85 s [algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
  1914. 1676.85 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1915. 1676.85 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1916. 1676.85 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1917. 1676.85 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
  1918. 1676.86 s [algebraic-graphs] Warning: 'hasEdge' is ambiguous. It is defined
  1919. 1676.86 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:403:1
  1920. 1676.86 s [algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
  1921. 1676.86 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1922. 1676.86 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1923. 1676.86 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
  1924. 1676.86 s [algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
  1925. 1676.87 s [algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
  1926. 1676.87 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:20
  1927. 1676.87 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:1
  1928. 1676.87 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1929. 1676.87 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1930. 1676.87 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:675:1
  1931. 1676.87 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1932. 1676.87 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:191:1
  1933. 1676.87 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1934. 1676.87 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1935. 1676.87 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1936. 1676.87 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:191:1
  1937. 1676.88 s [algebraic-graphs] Warning: 'Focus' is ambiguous. It is defined
  1938. 1676.88 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:18
  1939. 1676.88 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:1
  1940. 1676.88 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1941. 1676.88 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1942. 1676.88 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:642:1
  1943. 1676.88 s [algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
  1944. 1676.88 s [algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
  1945. 1676.88 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
  1946. 1676.88 s [algebraic-graphs] Warning: 'Doc' is ambiguous. It is defined
  1947. 1676.88 s [algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:17
  1948. 1676.88 s [algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:1
  1949. 1676.88 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1950. 1676.88 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1951. 1676.88 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export.hs:57:1
  1952. 1676.88 s [algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
  1953. 1676.89 s [algebraic-graphs] Warning: 'Style' is ambiguous. It is defined
  1954. 1676.89 s [algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:18
  1955. 1676.89 s [algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:1
  1956. 1676.89 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1957. 1676.89 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1958. 1676.89 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export/Dot.hs:49:1
  1959. 1676.89 s [algebraic-graphs] Warning: 'Graph' is out of scope.
  1960. 1676.89 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1961. 1676.89 s [algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
  1962. 1676.89 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1963. 1676.89 s [algebraic-graphs] * at src/Algebra/Graph/Undirected.hs:253:1
  1964. 1676.89 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1965. 1676.89 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1966. 1676.89 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1967. 1676.89 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Undirected.hs:253:1
  1968. 1676.90 s [algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
  1969. 1676.91 s [algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
  1970. 1676.91 s [algebraic-graphs] Warning: 'TransitiveRelation' is ambiguous. It is defined
  1971. 1676.91 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:32
  1972. 1676.91 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:1
  1973. 1676.91 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1974. 1676.91 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1975. 1676.91 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Transitive.hs:39:1
  1976. 1676.91 s [algebraic-graphs] Warning: 'Transitive' is out of scope.
  1977. 1676.91 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1978. 1676.91 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
  1979. 1676.91 s [algebraic-graphs] Warning: 'ReflexiveRelation' is ambiguous. It is defined
  1980. 1676.91 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:31
  1981. 1676.91 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:1
  1982. 1676.91 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1983. 1676.91 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1984. 1676.91 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Reflexive.hs:34:1
  1985. 1676.91 s [algebraic-graphs] Warning: 'Reflexive' is out of scope.
  1986. 1676.91 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1987. 1676.91 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
  1988. 1676.91 s [algebraic-graphs] Warning: 'PreorderRelation' is ambiguous. It is defined
  1989. 1676.91 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:30
  1990. 1676.91 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:1
  1991. 1676.91 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1992. 1676.91 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1993. 1676.91 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Preorder.hs:44:1
  1994. 1676.91 s [algebraic-graphs] Warning: 'Preorder' is out of scope.
  1995. 1676.91 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1996. 1676.91 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
  1997. 1676.91 s [algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
  1998. 1676.91 s [algebraic-graphs] Missing documentation for:
  1999. 1676.91 s [algebraic-graphs] Module header
  2000. 1676.91 s [algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
  2001. 1676.91 s [algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:42)
  2002. 1676.91 s [algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:23)
  2003. 1676.91 s [algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:27)
  2004. 1676.91 s [algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:35)
  2005. 1676.91 s [algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:39)
  2006. 1676.91 s [algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:31)
  2007. 1676.91 s [algebraic-graphs] Warning: 'GraphKL' is ambiguous. It is defined
  2008. 1676.91 s [algebraic-graphs] * at src/Data/Graph/Typed.hs:40:18
  2009. 1676.91 s [algebraic-graphs] * at src/Data/Graph/Typed.hs:40:1
  2010. 1676.91 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  2011. 1676.91 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  2012. 1676.91 s [algebraic-graphs] Defaulting to the one defined at src/Data/Graph/Typed.hs:40:1
  2013. 1676.92 s [algebraic-graphs] Warning: 'array' is out of scope.
  2014. 1676.92 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  2015. 1676.92 s [algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
  2016. 1676.92 s [algebraic-graphs] Missing documentation for:
  2017. 1676.92 s [algebraic-graphs] scc (src/Data/Graph/Typed.hs:192)
  2018. 1677.09 s [algebraic-graphs] Warning: Algebra.Graph.AdjacencyMap: could not find link destinations for:
  2019. 1677.09 s [algebraic-graphs] - Algebra.Graph.AdjacencyMap.Rep_AdjacencyMap
  2020. 1677.09 s [algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap0
  2021. 1677.09 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap0
  2022. 1677.09 s [algebraic-graphs] Warning: Algebra.Graph.AdjacencyIntMap: could not find link destinations for:
  2023. 1677.09 s [algebraic-graphs] - Algebra.Graph.AdjacencyIntMap.Rep_AdjacencyIntMap
  2024. 1677.09 s [algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyIntMap
  2025. 1677.09 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyIntMap
  2026. 1677.10 s [algebraic-graphs] Warning: Algebra.Graph.Internal: could not find link destinations for:
  2027. 1677.10 s [algebraic-graphs] - Algebra.Graph.Internal.D:R:ItemList
  2028. 1677.11 s [algebraic-graphs] Warning: Algebra.Graph: could not find link destinations for:
  2029. 1677.11 s [algebraic-graphs] - Algebra.Graph.Rep_Graph
  2030. 1677.11 s [algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexGraph
  2031. 1677.11 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph1
  2032. 1677.12 s [algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap: could not find link destinations for:
  2033. 1677.12 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_AdjacencyMap
  2034. 1677.12 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_List
  2035. 1677.12 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.D:R:ItemList
  2036. 1677.12 s [algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap.Algorithm: could not find link destinations for:
  2037. 1677.12 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Algorithm.Rep_Matching
  2038. 1677.12 s [algebraic-graphs] Warning: Algebra.Graph.Label: could not find link destinations for:
  2039. 1677.12 s [algebraic-graphs] - Algebra.Graph.Label.D:R:ItemLabel
  2040. 1677.12 s [algebraic-graphs] - Algebra.Graph.Label.D:R:ItemMinimum
  2041. 1677.13 s [algebraic-graphs] Warning: Algebra.Graph.NonEmpty.AdjacencyMap: could not find link destinations for:
  2042. 1677.13 s [algebraic-graphs] - Algebra.Graph.NonEmpty.AdjacencyMap.Rep_AdjacencyMap
  2043. 1677.13 s [algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap
  2044. 1677.14 s [algebraic-graphs] Warning: Algebra.Graph.ToGraph: could not find link destinations for:
  2045. 1677.14 s [algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyIntMap
  2046. 1677.14 s [algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap
  2047. 1677.14 s [algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexAdjacencyMap0
  2048. 1677.14 s [algebraic-graphs] - Algebra.Graph.ToGraph.D:R:ToVertexGraph
  2049. 1677.14 s [algebraic-graphs] - Algebra.Graph.Relation.D:R:ToVertexRelation
  2050. 1677.14 s [algebraic-graphs] - Algebra.Graph.Relation.Symmetric.D:R:ToVertexRelation
  2051. 1677.14 s [algebraic-graphs] - Algebra.Graph.NonEmpty.D:R:ToVertexGraph
  2052. 1677.14 s [algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.D:R:ToVertexAdjacencyMap
  2053. 1677.14 s [algebraic-graphs] - Algebra.Graph.Labelled.D:R:ToVertexGraph
  2054. 1677.15 s [algebraic-graphs] Warning: Algebra.Graph.Relation: could not find link destinations for:
  2055. 1677.15 s [algebraic-graphs] - Algebra.Graph.Relation.D:R:ToVertexRelation
  2056. 1677.15 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation0
  2057. 1677.15 s [algebraic-graphs] Warning: Algebra.Graph.Relation.Symmetric: could not find link destinations for:
  2058. 1677.15 s [algebraic-graphs] - Algebra.Graph.Relation.Symmetric.D:R:ToVertexRelation
  2059. 1677.15 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation
  2060. 1677.16 s [algebraic-graphs] Warning: Algebra.Graph.NonEmpty: could not find link destinations for:
  2061. 1677.16 s [algebraic-graphs] - Algebra.Graph.NonEmpty.D:R:ToVertexGraph
  2062. 1677.16 s [algebraic-graphs] Warning: Algebra.Graph.Labelled.AdjacencyMap: could not find link destinations for:
  2063. 1677.16 s [algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.Rep_AdjacencyMap
  2064. 1677.16 s [algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.D:R:ToVertexAdjacencyMap
  2065. 1677.16 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap
  2066. 1677.17 s [algebraic-graphs] Warning: Algebra.Graph.Labelled: could not find link destinations for:
  2067. 1677.17 s [algebraic-graphs] - Algebra.Graph.Labelled.Rep_Graph
  2068. 1677.17 s [algebraic-graphs] - Algebra.Graph.Labelled.D:R:ToVertexGraph
  2069. 1677.17 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph
  2070. 1677.18 s [algebraic-graphs] Warning: Algebra.Graph.Undirected: could not find link destinations for:
  2071. 1677.18 s [algebraic-graphs] - Algebra.Graph.Undirected.Rep_Graph
  2072. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph0
  2073. 1677.18 s [algebraic-graphs] Warning: Algebra.Graph.Class: could not find link destinations for:
  2074. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyIntMap
  2075. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap
  2076. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexAdjacencyMap0
  2077. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexFUN
  2078. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph
  2079. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph0
  2080. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexGraph1
  2081. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexMaybe
  2082. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation
  2083. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexRelation0
  2084. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexTuple2
  2085. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexTuple3
  2086. 1677.18 s [algebraic-graphs] - Algebra.Graph.Class.D:R:VertexUnit
  2087. 1677.18 s [algebraic-graphs] - Algebra.Graph.Relation.Transitive.D:R:VertexTransitiveRelation
  2088. 1677.18 s [algebraic-graphs] - Algebra.Graph.Relation.Reflexive.D:R:VertexReflexiveRelation
  2089. 1677.18 s [algebraic-graphs] - Algebra.Graph.Relation.Preorder.D:R:VertexPreorderRelation
  2090. 1677.18 s [algebraic-graphs] - Algebra.Graph.Example.Todo.D:R:VertexTodo
  2091. 1677.18 s [algebraic-graphs] Warning: Algebra.Graph.Relation.Transitive: could not find link destinations for:
  2092. 1677.18 s [algebraic-graphs] - Algebra.Graph.Relation.Transitive.D:R:VertexTransitiveRelation
  2093. 1677.18 s [algebraic-graphs] Warning: Algebra.Graph.Relation.Reflexive: could not find link destinations for:
  2094. 1677.18 s [algebraic-graphs] - Algebra.Graph.Relation.Reflexive.D:R:VertexReflexiveRelation
  2095. 1677.18 s [algebraic-graphs] Warning: Algebra.Graph.Relation.Preorder: could not find link destinations for:
  2096. 1677.18 s [algebraic-graphs] - Algebra.Graph.Relation.Preorder.D:R:VertexPreorderRelation
  2097. 1677.18 s [algebraic-graphs] Warning: Algebra.Graph.Example.Todo: could not find link destinations for:
  2098. 1677.18 s [algebraic-graphs] - Algebra.Graph.Example.Todo.D:R:VertexTodo
  2099. 1682.17 s [algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs,
  2100. 1682.33 s [algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
  2101. 1682.81 s [algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7...
  2102. 1682.90 s [algebraic-graphs] Phase: installPhase
  2103. 1682.96 s [algebraic-graphs] Installing library in /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7/lib/ghc-9.12.2/lib/x86_64-linux-ghc-9.12.2-e4b2/algebraic-graphs-0.7-FExsROwW0T59iodXbrHh2x
  2104. 1683.69 s [algebraic-graphs] Phase: fixupPhase
  2105. 1683.71 s [algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7
  2106. 1683.74 s [algebraic-graphs] shrinking /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7/lib/ghc-9.12.2/lib/x86_64-linux-ghc-9.12.2-e4b2/libHSalgebraic-graphs-0.7-FExsROwW0T59iodXbrHh2x-ghc9.12.2.so
  2107. 1683.75 s [algebraic-graphs] checking for references to /build/ in /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7...
  2108. 1683.79 s [algebraic-graphs] patching script interpreter paths in /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7
  2109. 1683.80 s [algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7/lib
  2110. 1684.09 s [algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/7b4xhi7nq9chn00y1ginjw82sqkkzp67-algebraic-graphs-0.7-doc
  2111. 1684.11 s [algebraic-graphs] checking for references to /build/ in /nix/store/7b4xhi7nq9chn00y1ginjw82sqkkzp67-algebraic-graphs-0.7-doc...
  2112. 1684.14 s [algebraic-graphs] patching script interpreter paths in /nix/store/7b4xhi7nq9chn00y1ginjw82sqkkzp67-algebraic-graphs-0.7-doc
  2113. 1684.32 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/7b4xhi7nq9chn00y1ginjw82sqkkzp67-algebraic-graphs-0.7-doc /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7
  2114. 1684.89 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  2115. 1684.91 s [post-build-hook] Uploading to the NixCI cache: /nix/store/7b4xhi7nq9chn00y1ginjw82sqkkzp67-algebraic-graphs-0.7-doc /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7
  2116. 1684.95 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2117. 1685.07 s [post-build-hook] copying 1 paths...
  2118. 1685.07 s [post-build-hook] copying path '/nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
  2119. 1691.47 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2120. 1691.63 s [post-build-hook] copying 0 paths...
  2121. 1691.65 s Progress: 14 of 19 built, 165 of 165 downloaded from cache
  2122. 1691.71 s Building algebraic-graph-duoids
  2123. 1691.87 s [algebraic-graph-duoids] Phase: setupCompilerEnvironmentPhase
  2124. 1691.88 s [algebraic-graph-duoids] Build with /nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2.
  2125. 1692.15 s [algebraic-graph-duoids] Phase: unpackPhase
  2126. 1692.16 s [algebraic-graph-duoids] unpacking source archive /nix/store/hwhxlh4aq4w3fvrlk65js3cdkm3in22k-5y8mzl3igbd7qyrpb010fqiak50k5q01-source/./algebraic-graphs
  2127. 1692.16 s [algebraic-graph-duoids] source root is algebraic-graphs
  2128. 1692.17 s [algebraic-graph-duoids] Phase: patchPhase
  2129. 1692.18 s [algebraic-graph-duoids] Phase: compileBuildDriverPhase
  2130. 1692.19 s [algebraic-graph-duoids] setupCompileFlags: -package-db=/build/tmp.TfTQnmkwvy/setup-package.conf.d -threaded
  2131. 1692.25 s [algebraic-graph-duoids] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.TfTQnmkwvy/Main.o )
  2132. 1692.31 s [algebraic-graph-duoids] [2 of 2] Linking Setup
  2133. 1693.64 s [algebraic-graph-duoids] Phase: updateAutotoolsGnuConfigScriptsPhase
  2134. 1693.65 s [algebraic-graph-duoids] Phase: configurePhase
  2135. 1693.66 s [algebraic-graph-duoids] configureFlags: --verbose --prefix=/nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0 --with-gcc=gcc --package-db=/build/tmp.TfTQnmkwvy/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/xp8g8298vbm4k9ipj14xf1r4rh899hr4-ncurses-6.5/lib --extra-lib-dirs=/nix/store/wxm6pczq28ppr7ffwclsl6njbzzr48zf-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/3f0hp921ncxr249f5lmspc8silkqr8f7-elfutils-0.194/lib --extra-lib-dirs=/nix/store/km81slwkcc82dbwywl10gpffjb78g6ni-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fvsl0b39y6ns2z66gfvc2raca3b5wr18-numactl-2.0.18/lib --extra-lib-dirs=/nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2/lib
  2136. 1693.67 s [algebraic-graph-duoids] Using Parsec parser
  2137. 1693.67 s [algebraic-graph-duoids] Configuring algebraic-graph-duoids-0.0.1.0...
  2138. 1693.72 s [algebraic-graph-duoids] Warning: Unknown/unsupported 'ghc' version detected (Cabal 3.14.1.0 supports
  2139. 1693.72 s [algebraic-graph-duoids] 'ghc' version < 9.12):
  2140. 1693.72 s [algebraic-graph-duoids] /nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2/bin/ghc is version
  2141. 1693.72 s [algebraic-graph-duoids] 9.12.2
  2142. 1694.03 s [algebraic-graph-duoids] Flags chosen: lint=False, noisy-deprecations=True
  2143. 1694.32 s [algebraic-graph-duoids] Dependency algebraic-graphs >=0.6.1 && <0.8: using algebraic-graphs-0.7
  2144. 1694.32 s [algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
  2145. 1694.32 s [algebraic-graph-duoids] >=4.21.0 && <4.22 || >=4.22.0 && <4.23: using base-4.21.0.0
  2146. 1694.32 s [algebraic-graph-duoids] Dependency duoids >=0.0.1 && <0.1: using duoids-0.0.1.0
  2147. 1694.32 s [algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
  2148. 1694.32 s [algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
  2149. 1694.32 s [algebraic-graph-duoids] Dependency algebraic-graphs >=0.6.1 && <0.8: using algebraic-graphs-0.7
  2150. 1694.32 s [algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
  2151. 1694.32 s [algebraic-graph-duoids] >=4.21.0 && <4.22 || >=4.22.0 && <4.23: using base-4.21.0.0
  2152. 1694.32 s [algebraic-graph-duoids] Dependency duoids-hedgehog >=0.0.1 && <0.1: using duoids-hedgehog-0.0.1.0
  2153. 1694.32 s [algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
  2154. 1694.32 s [algebraic-graph-duoids] Dependency hedgehog >=1.2 && <1.3 || >=1.4 && <1.6 || >=1.7 && <1.8: using
  2155. 1694.32 s [algebraic-graph-duoids] hedgehog-1.5
  2156. 1694.32 s [algebraic-graph-duoids] Dependency algebraic-graph-duoids: using algebraic-graph-duoids-0.0.1.0
  2157. 1694.32 s [algebraic-graph-duoids] Dependency base >=4.18.0 && <4.19 || >=4.19.0 && <4.20 || >=4.20.0 && <4.21 ||
  2158. 1694.32 s [algebraic-graph-duoids] >=4.21.0 && <4.22 || >=4.22.0 && <4.23: using base-4.21.0.0
  2159. 1694.32 s [algebraic-graph-duoids] Dependency doctest >=0.21.1 && <0.22 || >=0.22.6 && <0.23 || >=0.24.0 &&
  2160. 1694.32 s [algebraic-graph-duoids] <0.25: using doctest-0.24.2
  2161. 1694.32 s [algebraic-graph-duoids] Dependency ghc-compat-plugin >=0.1.0 && <0.2: using ghc-compat-plugin-0.1.0.1
  2162. 1694.32 s [algebraic-graph-duoids] Source component graph:
  2163. 1694.32 s [algebraic-graph-duoids] component lib
  2164. 1694.32 s [algebraic-graph-duoids] component test:doctests dependency lib
  2165. 1694.32 s [algebraic-graph-duoids] component test:laws dependency lib
  2166. 1694.32 s [algebraic-graph-duoids] Configured component graph:
  2167. 1694.32 s [algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2168. 1694.32 s [algebraic-graph-duoids] include algebraic-graphs-0.7-FExsROwW0T59iodXbrHh2x
  2169. 1694.32 s [algebraic-graph-duoids] include base-4.21.0.0-d2ce
  2170. 1694.32 s [algebraic-graph-duoids] include duoids-0.0.1.0-IuBFxch686P4VjwWLKvuLP
  2171. 1694.32 s [algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2172. 1694.32 s [algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-7xRAFDdohxe13lcjZWT9VE-doctests
  2173. 1694.32 s [algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2174. 1694.32 s [algebraic-graph-duoids] include base-4.21.0.0-d2ce
  2175. 1694.32 s [algebraic-graph-duoids] include doctest-0.24.2-3Vtwe1LFUfT5tbL259GL9x
  2176. 1694.32 s [algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2177. 1694.32 s [algebraic-graph-duoids] component algebraic-graph-duoids-0.0.1.0-BtfLGzIZUiGBgI5hCNDlxL-laws
  2178. 1694.32 s [algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2179. 1694.32 s [algebraic-graph-duoids] include algebraic-graphs-0.7-FExsROwW0T59iodXbrHh2x
  2180. 1694.32 s [algebraic-graph-duoids] include base-4.21.0.0-d2ce
  2181. 1694.32 s [algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-1mHNUrhg7f0578C6ht6MwF
  2182. 1694.32 s [algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2183. 1694.32 s [algebraic-graph-duoids] include hedgehog-1.5-HUP4AhU7QzdBP2TFfvNTUP
  2184. 1694.32 s [algebraic-graph-duoids] Linked component graph:
  2185. 1694.32 s [algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2186. 1694.32 s [algebraic-graph-duoids] include algebraic-graphs-0.7-FExsROwW0T59iodXbrHh2x
  2187. 1694.32 s [algebraic-graph-duoids] include base-4.21.0.0-d2ce
  2188. 1694.32 s [algebraic-graph-duoids] include duoids-0.0.1.0-IuBFxch686P4VjwWLKvuLP
  2189. 1694.32 s [algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2190. 1694.32 s [algebraic-graph-duoids] Algebra.Graph.Duoid=algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM:Algebra.Graph.Duoid,Algebra.Graph.Duoid.Orphans=algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM:Algebra.Graph.Duoid.Orphans
  2191. 1694.32 s [algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-7xRAFDdohxe13lcjZWT9VE-doctests
  2192. 1694.32 s [algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2193. 1694.32 s [algebraic-graph-duoids] include base-4.21.0.0-d2ce
  2194. 1694.32 s [algebraic-graph-duoids] include doctest-0.24.2-3Vtwe1LFUfT5tbL259GL9x
  2195. 1694.32 s [algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2196. 1694.32 s [algebraic-graph-duoids] unit algebraic-graph-duoids-0.0.1.0-BtfLGzIZUiGBgI5hCNDlxL-laws
  2197. 1694.32 s [algebraic-graph-duoids] include algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2198. 1694.32 s [algebraic-graph-duoids] include algebraic-graphs-0.7-FExsROwW0T59iodXbrHh2x
  2199. 1694.32 s [algebraic-graph-duoids] include base-4.21.0.0-d2ce
  2200. 1694.32 s [algebraic-graph-duoids] include duoids-hedgehog-0.0.1.0-1mHNUrhg7f0578C6ht6MwF
  2201. 1694.32 s [algebraic-graph-duoids] include ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2202. 1694.32 s [algebraic-graph-duoids] include hedgehog-1.5-HUP4AhU7QzdBP2TFfvNTUP
  2203. 1694.32 s [algebraic-graph-duoids] Ready component graph:
  2204. 1694.32 s [algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2205. 1694.32 s [algebraic-graph-duoids] depends algebraic-graphs-0.7-FExsROwW0T59iodXbrHh2x
  2206. 1694.32 s [algebraic-graph-duoids] depends base-4.21.0.0-d2ce
  2207. 1694.32 s [algebraic-graph-duoids] depends duoids-0.0.1.0-IuBFxch686P4VjwWLKvuLP
  2208. 1694.32 s [algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2209. 1694.32 s [algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-BtfLGzIZUiGBgI5hCNDlxL-laws
  2210. 1694.32 s [algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2211. 1694.32 s [algebraic-graph-duoids] depends algebraic-graphs-0.7-FExsROwW0T59iodXbrHh2x
  2212. 1694.32 s [algebraic-graph-duoids] depends base-4.21.0.0-d2ce
  2213. 1694.32 s [algebraic-graph-duoids] depends duoids-hedgehog-0.0.1.0-1mHNUrhg7f0578C6ht6MwF
  2214. 1694.32 s [algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2215. 1694.32 s [algebraic-graph-duoids] depends hedgehog-1.5-HUP4AhU7QzdBP2TFfvNTUP
  2216. 1694.32 s [algebraic-graph-duoids] definite algebraic-graph-duoids-0.0.1.0-7xRAFDdohxe13lcjZWT9VE-doctests
  2217. 1694.32 s [algebraic-graph-duoids] depends algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2218. 1694.32 s [algebraic-graph-duoids] depends base-4.21.0.0-d2ce
  2219. 1694.32 s [algebraic-graph-duoids] depends doctest-0.24.2-3Vtwe1LFUfT5tbL259GL9x
  2220. 1694.32 s [algebraic-graph-duoids] depends ghc-compat-plugin-0.1.0.1-1J8rBhspjymFYLbIMQRv8V
  2221. 1694.32 s [algebraic-graph-duoids] Using Cabal-3.14.1.0 compiled by ghc-9.12
  2222. 1694.32 s [algebraic-graph-duoids] Using compiler: ghc-9.12.2
  2223. 1694.32 s [algebraic-graph-duoids] Using install prefix:
  2224. 1694.32 s [algebraic-graph-duoids] /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0
  2225. 1694.32 s [algebraic-graph-duoids] Executables installed in:
  2226. 1694.32 s [algebraic-graph-duoids] /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/bin
  2227. 1694.32 s [algebraic-graph-duoids] Libraries installed in:
  2228. 1694.32 s [algebraic-graph-duoids] /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.12.2/lib/x86_64-linux-ghc-9.12.2-e4b2/algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2229. 1694.32 s [algebraic-graph-duoids] Dynamic Libraries installed in:
  2230. 1694.32 s [algebraic-graph-duoids] /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.12.2/lib/x86_64-linux-ghc-9.12.2-e4b2
  2231. 1694.32 s [algebraic-graph-duoids] Private executables installed in:
  2232. 1694.32 s [algebraic-graph-duoids] /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/libexec/x86_64-linux-ghc-9.12.2-e4b2/algebraic-graph-duoids-0.0.1.0
  2233. 1694.32 s [algebraic-graph-duoids] Data files installed in:
  2234. 1694.32 s [algebraic-graph-duoids] /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/share/x86_64-linux-ghc-9.12.2-e4b2/algebraic-graph-duoids-0.0.1.0
  2235. 1694.32 s [algebraic-graph-duoids] Documentation installed in:
  2236. 1694.32 s [algebraic-graph-duoids] /nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc/share/doc/algebraic-graph-duoids-0.0.1.0
  2237. 1694.32 s [algebraic-graph-duoids] Configuration files installed in:
  2238. 1694.32 s [algebraic-graph-duoids] /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/etc
  2239. 1694.32 s [algebraic-graph-duoids] No alex found
  2240. 1694.32 s [algebraic-graph-duoids] Using ar found on system at:
  2241. 1694.32 s [algebraic-graph-duoids] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
  2242. 1694.32 s [algebraic-graph-duoids] No c2hs found
  2243. 1694.32 s [algebraic-graph-duoids] No cpphs found
  2244. 1694.32 s [algebraic-graph-duoids] Using doctest version 0.24.2 found on system at:
  2245. 1694.32 s [algebraic-graph-duoids] /nix/store/ipijqnpysrfmqbr0wn40g9sljakkm866-doctest-0.24.2/bin/doctest
  2246. 1694.32 s [algebraic-graph-duoids] Using gcc version 14.3.0 given by user at:
  2247. 1694.32 s [algebraic-graph-duoids] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
  2248. 1694.32 s [algebraic-graph-duoids] Using ghc version 9.12.2 found on system at:
  2249. 1694.32 s [algebraic-graph-duoids] /nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2/bin/ghc
  2250. 1694.32 s [algebraic-graph-duoids] Using ghc-pkg version 9.12.2 found on system at:
  2251. 1694.32 s [algebraic-graph-duoids] /nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2/bin/ghc-pkg-9.12.2
  2252. 1694.32 s [algebraic-graph-duoids] No ghcjs found
  2253. 1694.32 s [algebraic-graph-duoids] No ghcjs-pkg found
  2254. 1694.32 s [algebraic-graph-duoids] No greencard found
  2255. 1694.32 s [algebraic-graph-duoids] Using haddock version 2.30.0 found on system at:
  2256. 1694.32 s [algebraic-graph-duoids] /nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2/bin/haddock-ghc-9.12.2
  2257. 1694.32 s [algebraic-graph-duoids] No happy found
  2258. 1694.32 s [algebraic-graph-duoids] No haskell-suite found
  2259. 1694.32 s [algebraic-graph-duoids] No haskell-suite-pkg found
  2260. 1694.32 s [algebraic-graph-duoids] No hmake found
  2261. 1694.32 s [algebraic-graph-duoids] Using hpc version 0.69 found on system at:
  2262. 1694.32 s [algebraic-graph-duoids] /nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2/bin/hpc-ghc-9.12.2
  2263. 1694.32 s [algebraic-graph-duoids] Using hsc2hs version 0.68.10 found on system at:
  2264. 1694.32 s [algebraic-graph-duoids] /nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2/bin/hsc2hs-ghc-9.12.2
  2265. 1694.32 s [algebraic-graph-duoids] Using hscolour version 1.25 found on system at:
  2266. 1694.32 s [algebraic-graph-duoids] /nix/store/2v3bj5c3hw4sl2k1aissf6967f73c0fq-hscolour-1.25/bin/HsColour
  2267. 1694.32 s [algebraic-graph-duoids] No jhc found
  2268. 1694.32 s [algebraic-graph-duoids] Using ld found on system at:
  2269. 1694.32 s [algebraic-graph-duoids] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
  2270. 1694.32 s [algebraic-graph-duoids] No pkg-config found
  2271. 1694.32 s [algebraic-graph-duoids] Using runghc version 9.12.2 found on system at:
  2272. 1694.32 s [algebraic-graph-duoids] /nix/store/cy4xxly1khfbvxgrnhy50hfwdz0dd2nv-ghc-9.12.2/bin/runghc-9.12.2
  2273. 1694.32 s [algebraic-graph-duoids] Using strip version 2.44 found on system at:
  2274. 1694.32 s [algebraic-graph-duoids] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
  2275. 1694.32 s [algebraic-graph-duoids] Using tar found on system at:
  2276. 1694.32 s [algebraic-graph-duoids] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
  2277. 1694.32 s [algebraic-graph-duoids] No uhc found
  2278. 1694.53 s [algebraic-graph-duoids] Phase: buildPhase
  2279. 1694.59 s [algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
  2280. 1694.59 s [algebraic-graph-duoids] Building library for algebraic-graph-duoids-0.0.1.0...
  2281. 1694.70 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 )
  2282. 1695.13 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 )
  2283. 1696.01 s [algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, dist/build/Algebra/Graph/Duoid.p_o )
  2284. 1696.51 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 )
  2285. 1701.27 s [algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
  2286. 1701.27 s [algebraic-graph-duoids] Building test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
  2287. 1701.40 s [algebraic-graph-duoids] [1 of 1] Compiling Main ( tests/laws.hs, dist/build/laws/laws-tmp/Main.o )
  2288. 1702.44 s [algebraic-graph-duoids] [2 of 2] Linking dist/build/laws/laws
  2289. 1703.46 s [algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
  2290. 1703.46 s [algebraic-graph-duoids] Building test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
  2291. 1703.56 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 )
  2292. 1704.01 s [algebraic-graph-duoids] [2 of 2] Compiling Main ( tests/doctests.hs, dist/build/doctests/doctests-tmp/Main.o )
  2293. 1704.70 s [algebraic-graph-duoids] [3 of 3] Linking dist/build/doctests/doctests
  2294. 1708.71 s [algebraic-graph-duoids] Phase: checkPhase
  2295. 1709.11 s [algebraic-graph-duoids] Running 2 test suites...
  2296. 1709.11 s [algebraic-graph-duoids] Test suite laws: RUNNING...
  2297. 1709.15 s [algebraic-graph-duoids] ━━━ Duoid.Normal (Graph Word8) ━━━
  2298. 1709.15 s [algebraic-graph-duoids] ✓ unswapUnit passed 100 tests.
  2299. 1709.15 s [algebraic-graph-duoids] ✓ interchange passed 100 tests.
  2300. 1709.15 s [algebraic-graph-duoids] ✓ splitUnit passed 100 tests.
  2301. 1709.15 s [algebraic-graph-duoids] ✓ joinUnit passed 100 tests.
  2302. 1709.15 s [algebraic-graph-duoids] ✓ swapUnit passed 100 tests.
  2303. 1709.15 s [algebraic-graph-duoids] ✓ 5 succeeded.
  2304. 1709.15 s [algebraic-graph-duoids] Test suite laws: PASS
  2305. 1709.15 s [algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-laws.log
  2306. 1709.15 s [algebraic-graph-duoids] Test suite doctests: RUNNING...
  2307. 1709.72 s [algebraic-graph-duoids] Examples: 0 Tried: 0 Errors: 0 Failures: 0
  2308. 1709.76 s [algebraic-graph-duoids] NameLib Nothing
  2309. 1709.76 s [algebraic-graph-duoids] ----------------------------------------
  2310. 1709.78 s [algebraic-graph-duoids] Test suite doctests: PASS
  2311. 1709.78 s [algebraic-graph-duoids] Test suite logged to: dist/test/algebraic-graph-duoids-0.0.1.0-doctests.log
  2312. 1709.78 s [algebraic-graph-duoids] 2 of 2 test suites (2 of 2 test cases) passed.
  2313. 1709.78 s [algebraic-graph-duoids] Phase: haddockPhase
  2314. 1711.37 s [algebraic-graph-duoids] Preprocessing library for algebraic-graph-duoids-0.0.1.0...
  2315. 1711.37 s [algebraic-graph-duoids] Running Haddock on library for algebraic-graph-duoids-0.0.1.0...
  2316. 1711.78 s [algebraic-graph-duoids] [1 of 2] Compiling Algebra.Graph.Duoid ( src/Algebra/Graph/Duoid.hs, nothing ) [HIE file is missing]
  2317. 1712.21 s [algebraic-graph-duoids] [2 of 2] Compiling Algebra.Graph.Duoid.Orphans ( src/Algebra/Graph/Duoid/Orphans.hs, nothing ) [HIE file is missing]
  2318. 1712.47 s [algebraic-graph-duoids] Haddock coverage:
  2319. 1712.81 s [algebraic-graph-duoids] 100% ( 5 / 5) in 'Algebra.Graph.Duoid'
  2320. 1712.81 s [algebraic-graph-duoids] 100% ( 1 / 1) in 'Algebra.Graph.Duoid.Orphans'
  2321. 1721.78 s [algebraic-graph-duoids] Documentation created: dist/doc/html/algebraic-graph-duoids,
  2322. 1721.78 s [algebraic-graph-duoids] dist/doc/html/algebraic-graph-duoids/algebraic-graph-duoids.txt
  2323. 1723.39 s [algebraic-graph-duoids] Preprocessing test suite 'laws' for algebraic-graph-duoids-0.0.1.0...
  2324. 1725.08 s [algebraic-graph-duoids] Preprocessing test suite 'doctests' for algebraic-graph-duoids-0.0.1.0...
  2325. 1725.33 s [algebraic-graph-duoids] Phase: installPhase
  2326. 1725.42 s [algebraic-graph-duoids] Installing library in /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.12.2/lib/x86_64-linux-ghc-9.12.2-e4b2/algebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM
  2327. 1725.65 s [algebraic-graph-duoids] Phase: fixupPhase
  2328. 1725.67 s [algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0
  2329. 1725.68 s [algebraic-graph-duoids] shrinking /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/lib/ghc-9.12.2/lib/x86_64-linux-ghc-9.12.2-e4b2/libHSalgebraic-graph-duoids-0.0.1.0-LGAv3eFg9TxKckTxw5kM-ghc9.12.2.so
  2330. 1725.68 s [algebraic-graph-duoids] checking for references to /build/ in /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0...
  2331. 1725.70 s [algebraic-graph-duoids] patching script interpreter paths in /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0
  2332. 1725.70 s [algebraic-graph-duoids] stripping (with command strip and flags -S -p) in /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/lib
  2333. 1725.75 s [algebraic-graph-duoids] shrinking RPATHs of ELF executables and libraries in /nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc
  2334. 1725.75 s [algebraic-graph-duoids] checking for references to /build/ in /nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc...
  2335. 1725.77 s [algebraic-graph-duoids] patching script interpreter paths in /nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc
  2336. 1725.93 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0
  2337. 1726.44 s [post-build-hook] Pushing 2 paths (76 are already present) using zstd to cache sellout ⏳
  2338. 1726.44 s [post-build-hook]
  2339. 1726.84 s [post-build-hook] Pushing /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0 (1.24 MiB)
  2340. 1726.89 s [post-build-hook] Pushing /nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc (540.03 KiB)
  2341. 1727.92 s [post-build-hook]
  2342. 1727.92 s [post-build-hook] All done.
  2343. 1727.94 s [post-build-hook] Uploading to the NixCI cache: /nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0
  2344. 1727.98 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2345. 1727.99 s [post-build-hook] copying 2 paths...
  2346. 1727.99 s [post-build-hook] copying path '/nix/store/1ikdqdrigpvs2dad1q51yywh0yxs5518-algebraic-graph-duoids-0.0.1.0-doc' to 'https://cache.nix-ci.com'...
  2347. 1728.37 s [post-build-hook] copying path '/nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0' to 'https://cache.nix-ci.com'...
  2348. 1728.89 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2349. 1729.13 s [post-build-hook] copying 1 paths...
  2350. 1729.13 s [post-build-hook] copying path '/nix/store/bwx4mw2762wv1g1mnb65cml645hhkr1d-algebraic-graph-duoids-0.0.1.0.drv' to 'https://cache.nix-ci.com'...
  2351. 1729.36 s Progress: 15 of 19 built, 165 of 165 downloaded from cache
  2352. 1729.40 s Building ghc-9.12.2-with-packages
  2353. 1729.45 s [ghc-9.12.2-with-packages] /nix/store/8y11s6khk2wkdvf4r1lya9h3rnwc4cha-duoidal-transformers-0.0.1.0/nix-support:
  2354. 1729.45 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2355. 1729.46 s [ghc-9.12.2-with-packages] /nix/store/631n724m0cwchh4p7hz0chl18b2namh8-duoids-0.0.1.0/nix-support:
  2356. 1729.46 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2357. 1729.46 s [ghc-9.12.2-with-packages] /nix/store/ipz5s4mcg2ps3jrq18jv84ny3naclswa-duoids-hedgehog-0.0.1.0/nix-support:
  2358. 1729.46 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2359. 1729.46 s [ghc-9.12.2-with-packages] /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7/nix-support:
  2360. 1729.46 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2361. 1729.47 s [ghc-9.12.2-with-packages] /nix/store/pkvxklf83q25x4is7x57ilrc82xlgiid-algebraic-graphs-0.7/nix-support:
  2362. 1729.47 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2363. 1729.48 s [ghc-9.12.2-with-packages] /nix/store/ss1j3dr9hhfd794ry1lhky68vxdxjcma-ghc-compat-plugin-0.1.0.1/nix-support:
  2364. 1729.48 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2365. 1729.48 s [ghc-9.12.2-with-packages] /nix/store/ss1j3dr9hhfd794ry1lhky68vxdxjcma-ghc-compat-plugin-0.1.0.1/nix-support:
  2366. 1729.48 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2367. 1729.48 s [ghc-9.12.2-with-packages] /nix/store/aqhascsacrlbmj9c0z17lz86fq5m88sq-hedgehog-1.5/nix-support:
  2368. 1729.48 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2369. 1729.49 s [ghc-9.12.2-with-packages] /nix/store/aqhascsacrlbmj9c0z17lz86fq5m88sq-hedgehog-1.5/nix-support:
  2370. 1729.49 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2371. 1729.49 s [ghc-9.12.2-with-packages] /nix/store/rdrf9wf8vaw856ms410wd2dkrhs7nk07-ansi-terminal-1.1.3/nix-support:
  2372. 1729.49 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2373. 1729.49 s [ghc-9.12.2-with-packages] /nix/store/rdrf9wf8vaw856ms410wd2dkrhs7nk07-ansi-terminal-1.1.3/nix-support:
  2374. 1729.49 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2375. 1729.49 s [ghc-9.12.2-with-packages] /nix/store/0kcziz05cx0sa6d25jvwx1f80h2hnr85-async-2.2.5/nix-support:
  2376. 1729.49 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2377. 1729.50 s [ghc-9.12.2-with-packages] /nix/store/0kcziz05cx0sa6d25jvwx1f80h2hnr85-async-2.2.5/nix-support:
  2378. 1729.50 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2379. 1729.50 s [ghc-9.12.2-with-packages] /nix/store/y5i90fy047kzypa8livcfy04lwp82594-barbies-2.1.1.0/nix-support:
  2380. 1729.50 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2381. 1729.50 s [ghc-9.12.2-with-packages] /nix/store/y5i90fy047kzypa8livcfy04lwp82594-barbies-2.1.1.0/nix-support:
  2382. 1729.50 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2383. 1729.51 s [ghc-9.12.2-with-packages] /nix/store/nnr0h9v86bz86ca1zsfbi9m0d57v2vmj-concurrent-output-1.10.21/nix-support:
  2384. 1729.51 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2385. 1729.51 s [ghc-9.12.2-with-packages] /nix/store/nnr0h9v86bz86ca1zsfbi9m0d57v2vmj-concurrent-output-1.10.21/nix-support:
  2386. 1729.51 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2387. 1729.52 s [ghc-9.12.2-with-packages] /nix/store/la712y9pixdihfyzny0mizmmawa82wd7-lifted-async-0.10.2.7/nix-support:
  2388. 1729.52 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2389. 1729.52 s [ghc-9.12.2-with-packages] /nix/store/la712y9pixdihfyzny0mizmmawa82wd7-lifted-async-0.10.2.7/nix-support:
  2390. 1729.52 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2391. 1729.52 s [ghc-9.12.2-with-packages] /nix/store/gn0swws787bdlynagc22pjnnam68mwsq-mmorph-1.2.1/nix-support:
  2392. 1729.52 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2393. 1729.52 s [ghc-9.12.2-with-packages] /nix/store/gn0swws787bdlynagc22pjnnam68mwsq-mmorph-1.2.1/nix-support:
  2394. 1729.52 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2395. 1729.53 s [ghc-9.12.2-with-packages] /nix/store/xqhwh9nazhhvs17x4smcjm70na922gac-monad-control-1.0.3.1/nix-support:
  2396. 1729.53 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2397. 1729.53 s [ghc-9.12.2-with-packages] /nix/store/xqhwh9nazhhvs17x4smcjm70na922gac-monad-control-1.0.3.1/nix-support:
  2398. 1729.53 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2399. 1729.53 s [ghc-9.12.2-with-packages] /nix/store/4yh5b7mayccdj8w61h4hf34qz49x0ajs-pretty-show-1.10/nix-support:
  2400. 1729.53 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2401. 1729.53 s [ghc-9.12.2-with-packages] /nix/store/4yh5b7mayccdj8w61h4hf34qz49x0ajs-pretty-show-1.10/nix-support:
  2402. 1729.53 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2403. 1729.53 s [ghc-9.12.2-with-packages] /nix/store/vxgfgs1mvp21gl6l47iph3lrpan1rsd4-primitive-0.9.1.0/nix-support:
  2404. 1729.53 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2405. 1729.54 s [ghc-9.12.2-with-packages] /nix/store/vxgfgs1mvp21gl6l47iph3lrpan1rsd4-primitive-0.9.1.0/nix-support:
  2406. 1729.54 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2407. 1729.54 s [ghc-9.12.2-with-packages] /nix/store/j42bsxi8bhrkaicyh8an4yx8frakiv3d-random-1.2.1.3/nix-support:
  2408. 1729.54 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2409. 1729.55 s [ghc-9.12.2-with-packages] /nix/store/j42bsxi8bhrkaicyh8an4yx8frakiv3d-random-1.2.1.3/nix-support:
  2410. 1729.55 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2411. 1729.55 s [ghc-9.12.2-with-packages] /nix/store/vnf0h1rs116sgy0v0bw6mkjfcpsm0qkx-resourcet-1.3.0/nix-support:
  2412. 1729.55 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2413. 1729.55 s [ghc-9.12.2-with-packages] /nix/store/vnf0h1rs116sgy0v0bw6mkjfcpsm0qkx-resourcet-1.3.0/nix-support:
  2414. 1729.55 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2415. 1729.55 s [ghc-9.12.2-with-packages] /nix/store/f4h9q57z55mxmqxk1jajl5mcpw1cq811-safe-exceptions-0.1.7.4/nix-support:
  2416. 1729.55 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2417. 1729.56 s [ghc-9.12.2-with-packages] /nix/store/f4h9q57z55mxmqxk1jajl5mcpw1cq811-safe-exceptions-0.1.7.4/nix-support:
  2418. 1729.56 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2419. 1729.56 s [ghc-9.12.2-with-packages] /nix/store/a43444ms5j0gl0y1rk2s3n4bcs8wk84m-transformers-base-0.4.6/nix-support:
  2420. 1729.56 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2421. 1729.56 s [ghc-9.12.2-with-packages] /nix/store/a43444ms5j0gl0y1rk2s3n4bcs8wk84m-transformers-base-0.4.6/nix-support:
  2422. 1729.56 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2423. 1729.56 s [ghc-9.12.2-with-packages] /nix/store/j61fzi5z4sk7xzac1k503p538mbyy8xp-wl-pprint-annotated-0.1.0.1/nix-support:
  2424. 1729.56 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2425. 1729.56 s [ghc-9.12.2-with-packages] /nix/store/j61fzi5z4sk7xzac1k503p538mbyy8xp-wl-pprint-annotated-0.1.0.1/nix-support:
  2426. 1729.56 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2427. 1729.57 s [ghc-9.12.2-with-packages] /nix/store/9b4jlw09ib7h2ncky9vxlzgggj1jl2c6-ansi-terminal-types-1.1.3/nix-support:
  2428. 1729.57 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2429. 1729.57 s [ghc-9.12.2-with-packages] /nix/store/9b4jlw09ib7h2ncky9vxlzgggj1jl2c6-ansi-terminal-types-1.1.3/nix-support:
  2430. 1729.57 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2431. 1729.58 s [ghc-9.12.2-with-packages] /nix/store/zaazzzs7dc11djb0p2i37756as7slpz2-hashable-1.5.0.0/nix-support:
  2432. 1729.58 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2433. 1729.58 s [ghc-9.12.2-with-packages] /nix/store/zaazzzs7dc11djb0p2i37756as7slpz2-hashable-1.5.0.0/nix-support:
  2434. 1729.58 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2435. 1729.58 s [ghc-9.12.2-with-packages] /nix/store/xnqdi5caq1ynkbyg2qfi1b6zhv3fn501-distributive-0.6.2.1/nix-support:
  2436. 1729.58 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2437. 1729.59 s [ghc-9.12.2-with-packages] /nix/store/xnqdi5caq1ynkbyg2qfi1b6zhv3fn501-distributive-0.6.2.1/nix-support:
  2438. 1729.59 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2439. 1729.59 s [ghc-9.12.2-with-packages] /nix/store/bqshylnkz6gcl2zm7s3r5hlp439mrfal-constraints-0.14.2/nix-support:
  2440. 1729.59 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2441. 1729.60 s [ghc-9.12.2-with-packages] /nix/store/bqshylnkz6gcl2zm7s3r5hlp439mrfal-constraints-0.14.2/nix-support:
  2442. 1729.60 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2443. 1729.60 s [ghc-9.12.2-with-packages] /nix/store/0p3i1fm1by4kjbcassf6hj7lmpc0bp9c-lifted-base-0.2.3.12/nix-support:
  2444. 1729.60 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2445. 1729.60 s [ghc-9.12.2-with-packages] /nix/store/0p3i1fm1by4kjbcassf6hj7lmpc0bp9c-lifted-base-0.2.3.12/nix-support:
  2446. 1729.60 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2447. 1729.61 s [ghc-9.12.2-with-packages] /nix/store/kbxc407a7shgwq4hrmdasaq12n1cmmsf-transformers-compat-0.7.2/nix-support:
  2448. 1729.61 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2449. 1729.61 s [ghc-9.12.2-with-packages] /nix/store/kbxc407a7shgwq4hrmdasaq12n1cmmsf-transformers-compat-0.7.2/nix-support:
  2450. 1729.61 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2451. 1729.62 s [ghc-9.12.2-with-packages] /nix/store/jmj6n9l5505xm5pkzp0q5k882rcy6z7q-splitmix-0.1.3.1/nix-support:
  2452. 1729.62 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2453. 1729.62 s [ghc-9.12.2-with-packages] /nix/store/jmj6n9l5505xm5pkzp0q5k882rcy6z7q-splitmix-0.1.3.1/nix-support:
  2454. 1729.62 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2455. 1729.62 s [ghc-9.12.2-with-packages] /nix/store/swra9l1w3ac4rjhjls6rqy8fq6b9jglb-unliftio-core-0.2.1.0/nix-support:
  2456. 1729.62 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2457. 1729.62 s [ghc-9.12.2-with-packages] /nix/store/swra9l1w3ac4rjhjls6rqy8fq6b9jglb-unliftio-core-0.2.1.0/nix-support:
  2458. 1729.62 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2459. 1729.63 s [ghc-9.12.2-with-packages] /nix/store/4xa8hgl67kialh4br8rdba8hr1p0cgng-base-orphans-0.9.3/nix-support:
  2460. 1729.63 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2461. 1729.63 s [ghc-9.12.2-with-packages] /nix/store/4xa8hgl67kialh4br8rdba8hr1p0cgng-base-orphans-0.9.3/nix-support:
  2462. 1729.63 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2463. 1729.63 s [ghc-9.12.2-with-packages] /nix/store/8kai39lr0v65gqyj2dciy46cb0gillpc-tagged-0.8.9/nix-support:
  2464. 1729.63 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2465. 1729.63 s [ghc-9.12.2-with-packages] /nix/store/8kai39lr0v65gqyj2dciy46cb0gillpc-tagged-0.8.9/nix-support:
  2466. 1729.63 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2467. 1729.63 s [ghc-9.12.2-with-packages] /nix/store/0b32nbwf2nzblavd6dx29z6ibyv29snv-boring-0.2.2/nix-support:
  2468. 1729.63 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2469. 1729.64 s [ghc-9.12.2-with-packages] /nix/store/0b32nbwf2nzblavd6dx29z6ibyv29snv-boring-0.2.2/nix-support:
  2470. 1729.64 s [ghc-9.12.2-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/xzz3y96bkzkcmi4s81g3dzvmhryg4sfx-algebraic-graph-duoids-0.0.1.0/nix-support/propagated-build-inputs
  2471. 1731.92 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/2jhrv8j08738m63dxb4v1dbxg86vzydy-ghc-9.12.2-with-packages
  2472. 1732.47 s [post-build-hook] Pushing 1 paths (144 are already present) using zstd to cache sellout ⏳
  2473. 1732.54 s [post-build-hook]
  2474. 1732.90 s [post-build-hook] Pushing /nix/store/2jhrv8j08738m63dxb4v1dbxg86vzydy-ghc-9.12.2-with-packages (6.04 MiB)
  2475. 1734.76 s [post-build-hook]
  2476. 1734.76 s [post-build-hook] All done.
  2477. 1734.78 s [post-build-hook] Uploading to the NixCI cache: /nix/store/2jhrv8j08738m63dxb4v1dbxg86vzydy-ghc-9.12.2-with-packages
  2478. 1734.82 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2479. 1735.03 s [post-build-hook] copying 1 paths...
  2480. 1735.03 s [post-build-hook] copying path '/nix/store/2jhrv8j08738m63dxb4v1dbxg86vzydy-ghc-9.12.2-with-packages' to 'https://cache.nix-ci.com'...
  2481. 1736.38 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2482. 1736.62 s [post-build-hook] copying 1 paths...
  2483. 1736.62 s [post-build-hook] copying path '/nix/store/2vlc0bw8hd5swz76p1174r417k1p4bcx-ghc-9.12.2-with-packages.drv' to 'https://cache.nix-ci.com'...
  2484. 1736.85 s Progress: 16 of 18 built, 165 of 165 downloaded from cache
  2485. 1736.91 s Building all-packages
  2486. 1736.97 s [all-packages] created 3 symlinks in user environment
  2487. 1737.00 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/fn2nmc26lz4i2r7xyln028n7yl4q4lls-all-packages
  2488. 1737.55 s [post-build-hook] Pushing 1 paths (145 are already present) using zstd to cache sellout ⏳
  2489. 1737.59 s [post-build-hook]
  2490. 1737.99 s [post-build-hook] Pushing /nix/store/fn2nmc26lz4i2r7xyln028n7yl4q4lls-all-packages (872.00 B)
  2491. 1739.34 s [post-build-hook]
  2492. 1739.34 s [post-build-hook] All done.
  2493. 1739.35 s [post-build-hook] Uploading to the NixCI cache: /nix/store/fn2nmc26lz4i2r7xyln028n7yl4q4lls-all-packages
  2494. 1739.39 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2495. 1739.59 s [post-build-hook] copying 1 paths...
  2496. 1739.59 s [post-build-hook] copying path '/nix/store/fn2nmc26lz4i2r7xyln028n7yl4q4lls-all-packages' to 'https://cache.nix-ci.com'...
  2497. 1739.84 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2498. 1740.10 s [post-build-hook] copying 1 paths...
  2499. 1740.10 s [post-build-hook] copying path '/nix/store/9rl8b99686g7rzb8waf9s1marl9i6fb5-all-packages.drv' to 'https://cache.nix-ci.com'...
  2500. 1740.32 s Progress: 17 of 18 built, 165 of 165 downloaded from cache