add operator< to ConservedPath
authorDiane Trout <diane@caltech.edu>
Sat, 14 Oct 2006 00:05:43 +0000 (00:05 +0000)
committerDiane Trout <diane@caltech.edu>
Sat, 14 Oct 2006 00:05:43 +0000 (00:05 +0000)
commit5645153bf9f986331307c548b284188a64b04bf5
treefe42f9dccac9b1a00ae277d54b03c7c228a93ba2
parentef801c44b13c3092697004be0f683f7185243bf9
add operator< to ConservedPath
So I could sort a list of ConservedPaths it was hopefully going to
let me make simple_refine a little bit better by grouping paths
that were next to each other closer than those that were almost
next to each other execpt one match far away. Unfortunately
I didn't think it all the way through and the lists are already
sorted by that criteria. e.g.

1,1,1 < 1,1,70 < 2,2,2

when what simple refine needis is something more like

1,1,1 < 2,2,2 < 1,1,70
alg/conserved_path.cpp
alg/conserved_path.hpp
alg/test/test_conserved_path.cpp
alg/test/test_mussa.cpp