build packages.x86_64-linux.ghc9102_all

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