-
-
Notifications
You must be signed in to change notification settings - Fork 399
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
Do zero checking to avoid unnecessary work in addToExpression #536
Conversation
Nice. Just needs 0.3 |
@IainNZ is this the same (terrifying) Travis error you were seeing? |
Sure is |
I kinda love that AppVeyor is finally the one passing and the others are failing |
@@ -39,15 +41,19 @@ function addToExpression(aff::GenericAffExpr,c::Number,x::Number) | |||
end | |||
|
|||
function addToExpression{C,V}(aff::GenericAffExpr{C,V}, c::Number, x::V) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it me or is this method identical to the one above on line 31?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hah
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, they're the same
Do zero checking to avoid unnecessary work in addToExpression
The Travis failure looks like a recompilation issue with DataStructures; I can reproduce locally. |
Actually I think DataStructures was just in a broken state, I officially have no idea what's going on now. |
Report upstream? I can reproduce with |
ref #535