How do I generate the (module-level) dependency graph for my development? coq-dpdgraph generates graphs that are too huge and all programs fail to render the generated .dot file
many people build file dependency graph by just post-processing coqdep output, for example I do this here and here. Another take in Coquelicot is here
Another alternative is to use the coqdep -dumpgraph
feature from Coq 8.11 after compiling with whatever Coq version you need
calling tred (1) - transitive reduction filter for directed graphs
as Karl does in one of the scripts he linked can reduce the size of the graph substantially
Last updated: Oct 03 2023 at 20:01 UTC