Convert SimGrid platform files to a GraphViz dotfiles!
Find a file
2019-02-19 14:09:50 +01:00
convert.lisp Ensure to start with nil data into convert function 2019-02-19 14:09:50 +01:00
packages.lisp Create repo 2019-02-12 16:55:17 +01:00
platform.xml Create repo 2019-02-12 16:55:17 +01:00
README.md Update readme 2019-02-12 18:30:37 +01:00
sgp2dot-cl.lisp Create repo 2019-02-12 16:55:17 +01:00
sgp2dot.asd Create repo 2019-02-12 16:55:17 +01:00

Simgrid platform to dot file converter

sgp2dot is a Simgrid platform to Graphiz dot file converter implemented in Common Lisp. It requires:

  • Common Lisp
  • ASDF (Another System Definition Facility)
  • S-XML (Simple XML parser)

How to use it ?

  • First solution: Compile the project using asdf with the following call:

    (asdf:operate :build-op "sgp2dot")

    Then, use the dedicated sgp2dot-cl.lisp in your CLI. Note that you should adapt the sgp2dot-cl.lisp shebang according to your lisp implementation.

  • Second, and simpler solution: Load the system using asdf, and invoke (sgp2dot:convert <platform-file> <output-dot-file>).