diff options
author | KatolaZ <katolaz@yahoo.it> | 2015-04-23 15:29:46 +0100 |
---|---|---|
committer | KatolaZ <katolaz@yahoo.it> | 2015-04-23 15:29:46 +0100 |
commit | 36c4a380493cf29bc1b83635e86383a97cae7dd9 (patch) | |
tree | 777ad864a92325f89e9fd552716f48587bafa8f6 /python/test/simple_test.py | |
parent | e0b97ed43f8da81ee5865d151ebad7e1d60a55bd (diff) |
Version 0.1
Diffstat (limited to 'python/test/simple_test.py')
-rw-r--r-- | python/test/simple_test.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/python/test/simple_test.py b/python/test/simple_test.py new file mode 100644 index 0000000..e2919c6 --- /dev/null +++ b/python/test/simple_test.py @@ -0,0 +1,22 @@ +import multired as mr +import sys + + +if len(sys.argv) < 2: + print "Usage: %s <layer_list>" % sys.argv[0] + sys.exit(1) + +print "Loading layers...", +m = mr.multiplex_red(sys.argv[1], verbose=True) +print "[DONE]" + +print "Getting partitons...", +part = m.compute_partitions() +print "[DONE]" + +print "Partitions:..." +m.dump_partitions() + +m.draw_dendrogram() + + |