Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Depth-first-search and building strongly-connected-components in Coq

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Depth-first-search and building strongly-connected-components in Coq


chronological Thread 
  • From: Jianzhou Zhao <jianzhou AT seas.upenn.edu>
  • To: coq-club <coq-club AT inria.fr>
  • Subject: [Coq-Club] Depth-first-search and building strongly-connected-components in Coq
  • Date: Mon, 30 Apr 2012 12:06:06 -0400

Hello,

I was looking for certified extractable depth-first-search and
strongly-connected-components construction algorithms in Coq. I found
two SCCs with decidable and termination proofs:
*  one is in the CoLoR project:
http://color.inria.fr/doc/CoLoR.Util.Relation.SCC_dec.html,
      The algorithm, for each pair of nodes, checks if a path exists.
Its complexity could be at least O(n*n).
*  the other is from http://www.lri.fr/~arnold/projects:coqgraphs
      based on adjacent matrix, the complexity could be O(n*n).
but, failed to find DFS proofs. Does anyone know if there are any DFS
proofs, or SCC proofs with less complexity?

Thanks
-- 
Jianzhou



Archive powered by MhonArc 2.6.16.

Top of Page