source: liacs/ai/graaf/input2picture.sh@ 6

Last change on this file since 6 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

  • Property svn:executable set to *
File size: 347 bytes
Line 
1#!/bin/sh
2# Soul purpose of creating some descent graphs next to eachother to
3# compare results of owen GA and Neato (graphviz) output
4
5INPUT=${1:-input.txt}
6
7./ga $INPUT > ga.dot && neato -n2 -Tpng -o ga.png ga.dot
8./array2dot.pl $INPUT | neato -Tpng -o neato.png
9montage -geometry +1+2 -label "Neato" neato.png -label "GA" ga.png png:final.png
Note: See TracBrowser for help on using the repository browser.