////////////////////////////////////////////////

Code for converting .gml graphs to .list graphs

Written by Sharlee Climer, July 2007

////////////////////////////////////////////////


Follow these commands to create the executables:

gunzip gml2list.tar.gz
tar -xvf gml2list.tar
cd gml2list
make

This package includes the main code (convert.cpp), 
a header file (stdinc.h), a makefile, and 2 sample 
input files (sample.gml and sampleWt.gml), where 
the second sample file is for a weighted graph.  

If node numbers in the input file begin with 0, all 
node numbers will be increased by 1 by the code as 
Matlab doesn't accept nodes with value of 0.

Type 'gml2list' for command line argument list.  

The following command should produce sample.list 
from the sample.gml file that is supplied:

gml2list sample.gml sample.list
  
////////////////////////////////////////////////

Please contact me if you have any questions, bugs, 
suggestions, etc.

sharlee@climer.us

