comparison data/model/SparseModel.h @ 338:f14e2f7b24f7

* More space and time efficient AlignmentModel
author Chris Cannam
date Thu, 22 Nov 2007 11:09:26 +0000
parents 1afaf98dbf11
children 700cd3350391
comparison
equal deleted inserted replaced
336:5cd7f6d10d47 338:f14e2f7b24f7
460 { 460 {
461 { 461 {
462 QMutexLocker locker(&m_mutex); 462 QMutexLocker locker(&m_mutex);
463 m_points.insert(point); 463 m_points.insert(point);
464 m_pointCount++; 464 m_pointCount++;
465 if (point.label != "") m_hasTextLabels = true; 465 if (point.getLabel() != "") m_hasTextLabels = true;
466 } 466 }
467 467
468 // Even though this model is nominally sparse, there may still be 468 // Even though this model is nominally sparse, there may still be
469 // too many signals going on here (especially as they'll probably 469 // too many signals going on here (especially as they'll probably
470 // be queued from one thread to another), which is why we need the 470 // be queued from one thread to another), which is why we need the