-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Graft globs can cause hanging #148
Comments
My guess is that the problem is in VariableHandler.scala—there seems to be a 3-layer nesting of map operations, though I'm not too familiar with Scala or this codebase. @dowobeha, any insights? |
Not sure. What lines are you looking at? On Tuesday, February 12, 2013, nschneid wrote:
When a place gets crowded enough to require ID's, social collapse is not |
104–125 |
That is where globs get handled, but I don't see anything obviously wrong. Most of VariableHandler was @jhclark's code that I just refactored into VariableHandler. |
The first step in tackling this problem is to determine if the slow-down After this diagnosis, things become more complicated, but it would at least Anyone interested? On Tue, Feb 12, 2013 at 10:22 AM, Lane Schwartz [email protected]:
|
Graft globs such as that in "intractable" can cause ducttape to hang. This appears to be an efficiency issue since the graft glob on "completes" having only 3 branches completes quickly while "intractible" does not complete in any reasonable amount of time, perhaps due to some unexpected exponential blow up in the code. This operation should be O(n).
The text was updated successfully, but these errors were encountered: