#!/bin/sh

GRAPHERS="dot neato twopi circo fdp"
# GRAPHERS="neato twopi fdp"
#GRAPHERS="dot"

DOTFILE=$1

for GRAPH in $GRAPHERS ; do
  echo "time $GRAPH -Tsvg $DOTFILE -o $DOTFILE.$GRAPH.svg"
  time $GRAPH -Tsvg $DOTFILE -o $DOTFILE.$GRAPH.graph.svg

done

