Activity for caowm2001

  • caowm2001 caowm2001 posted a comment on ticket #110

    Sorry wrong patch, should be: --- src/mutlib/trace.cpp 2005-04-27 16:17:35 +0000 +++ - @@ -953,20 +953,21 @@ // Compute the mode by counting the maximum run length int nRun = 0; int nRunMax = 0; int nLast = -1; m_nIntervalMode = 0; for( n=0; n<nBases; n++ ) { if( Interval[n] == nLast ) nRun++; else { if( nRun > nRunMax ) { m_nIntervalMode = nLast; nRunMax = nRun; } nRun = 1; nLast = Interval[n]; } } + if( nRun > nRunMax ) m_nIntervalMode = nLast;

  • caowm2001 caowm2001 created ticket #110

    mutlib/trace.cpp: wrong interval mode compute

1