build packages.x86_64-linux.ghc9101_all

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