Balint Reczey
changed
bug 9696
What |
Removed |
Added |
Status |
UNCONFIRMED
|
IN_PROGRESS
|
Ever confirmed |
|
1
|
Comment # 25
on bug 9696
from Balint Reczey
@Guy: This bug has nothing to do with GTK, it is present with Qt as well. In
the callback we provide we append to a long list in _seq_analysis_info->list,
which is a GList thus appending is O(n) which makes the whole stuff O(n^2).
The fix is replacing it with GQueue, where append is O(1).
I started working on the fix.
You are receiving this mail because:
- You are watching all bug changes.