From 3f6def7b8bcaf4297ce2e95526422c841fe64826 Mon Sep 17 00:00:00 2001 From: AlexVanin Date: Tue, 15 Mar 2016 19:35:02 +0300 Subject: [PATCH] added usage in comments --- hampath.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hampath.py b/hampath.py index e576bed..343d66b 100755 --- a/hampath.py +++ b/hampath.py @@ -1,5 +1,18 @@ #!/usr/bin/python +""" +using: ./hampath.py input_file + +input file - connection matrix for a graph +numbers with ; as separator + +ex. + +0;1;2 +1;0;3 +2;3;0 +""" + import sys #Initial node for search \ start element in result chain.