]> ruin.nu Git - germs.git/blobdiff - src/genealgorithms.h
findComponents implemented and passes test
[germs.git] / src / genealgorithms.h
index 4c938e394bd42fa1ea3eb710239811dd32277e99..0158c35108616b4fd18b452ec357fa39841005c3 100644 (file)
@@ -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;
@@ -58,5 +61,10 @@ std::vector<Component> findComponents(const GeneOrder& go);
  */
 std::vector<Interval> findIntervals(const GeneOrder& go);
 
+/**
+ * Creates a list with the intervals at each point.
+ */
+std::vector<Interval> findIntervalsAtPoints(const std::vector<Interval>& intervals);
+
 #endif