build packages.x86_64-linux.ghc967_all

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