From fb604223fba036702415b5416d3fab89fd1121e1 Mon Sep 17 00:00:00 2001 From: filifa Date: Sat, 25 May 2024 17:51:04 -0500 Subject: [PATCH] add readme --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..112e39b --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# slacktime +slacktime is a program for calculating attributes of a project network such as +early/late start and finish times and slack. + +## Example +Save this DOT file as `foo.gv`. +``` +digraph { + A [DUR=10] + B [DUR=5] + C [DUR=25] + D [DUR=20] + E [DUR=50] + F [DUR=15] + G [DUR=35] + H [DUR=15] + + A -> B + A -> C + + B -> D + + C -> E + C -> F + + D -> G + + E -> H + + F -> H + + G -> H +} +``` +`slacktime -f foo.gv` will output a graph with newly calculated attributes on +each node.