Skip to content

digikar99/cl-dag-plot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dag-plot - Common Lisp Directed Acyclic Graph plotter using Dagre D3

Example implementation with pl-theorem-prover.

(define-plottable-dag pl-theorem-prover:node
  :id #'pl-theorem-prover:node-id
  :label (lambda (node)
           (format nil "~A" (pl-theorem-prover:node-formula node)))
  :children #'pl-theorem-prover:node-children
  :color (lambda (node)
           (if (pl-theorem-prover:node-truth-value node)
               "#fff"
               "#bbb")))

About

Common Lisp Directed Acyclic Graph plotter using Dagre D3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors