X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=src%2Fgenealgorithms.h;h=7f07d17f47476f617018e62494b7cb0ed9e738c6;hb=e44303f027e957d05c9e9418fbd68171f3707599;hp=4c938e394bd42fa1ea3eb710239811dd32277e99;hpb=e7953f0050007cd1999d64d985d0a063b9ddc99b;p=germs.git diff --git a/src/genealgorithms.h b/src/genealgorithms.h index 4c938e3..7f07d17 100644 --- a/src/genealgorithms.h +++ b/src/genealgorithms.h @@ -27,6 +27,9 @@ class GeneOrder; struct Component{ Component(int b,int e,int s):begin(b),end(e),sign(s){} + bool operator==(const Component& c){ + return begin == c.begin && end == c.end && sign == c.sign; + } int begin; int end; int sign; @@ -46,7 +49,12 @@ std::vector > robinsonSchensted(const GeneOrder& go); /** * Counts the number of cycles in the gene order. */ -int countCycles(const GeneOrder& go); +size_t countCycles(const GeneOrder& go); + +/** + * Calculates the inversion distance for this gene order + */ +size_t inversionDistance(const GeneOrder& go); /** * Finds the components in the gene order. @@ -58,5 +66,10 @@ std::vector findComponents(const GeneOrder& go); */ std::vector findIntervals(const GeneOrder& go); +/** + * Creates a list with the intervals at each point. + */ +std::vector findIntervalsAtPoints(const std::vector& intervals); + #endif