You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hm, running the example/benchmarks.rs without any sorting at all, it does not seem to make any significant difference. Which indicates that the sorting algo is actually not a bottleneck at all, even in the granular synthesis case.
Given a sorted audio graph, the following typical operation should not trigger a full sort:
We should be able to prepend the sorted list without any further analysis in the following order
Currently, the full sort is triggered by
self.ordered.clear();
in the Graph object when adding or removing edges.Sidequest - do we even need to sort when edges are removed? Only if that edge was part of a cycle which after removal can be unmuted!
The text was updated successfully, but these errors were encountered: