Add a processing module that reads events from a text file
[lttv.git] / lttv / lttv / sync / event_analysis_chull.c
index d0dd0a70c88839d5b4564966d982358859e8a788..e77eabd221048738aafb84f3dc0ee71a5c7bfb87 100644 (file)
@@ -927,7 +927,7 @@ void calculateFactorsMiddle(FactorsCHull* const factors)
        bmin= factors->min->drift;
        bmax= factors->max->drift;
 
-       g_assert_cmpfloat(bmax, >, bmin);
+       g_assert_cmpfloat(bmax, >=, bmin);
 
        factors->approx= malloc(sizeof(Factors));
        bhat= (bmax * bmin - 1. + sqrt(1. + pow(bmax, 2.) * pow(bmin, 2.) +
This page took 0.023479 seconds and 4 git commands to generate.