-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add "in" for IntervalBox #244
Conversation
Looks globally good to me, I only have some minor improvement propositions:
|
OK, will define for I realised that the problem is that the type T inside the vector should not be allowed to be an interval though? Or maybe that's not important. |
The reason for restricting to Also, is there any particular reason why you are using standard Julia vectors instead of |
Codecov Report
@@ Coverage Diff @@
## master #244 +/- ##
==========================================
+ Coverage 82.7% 82.76% +0.06%
==========================================
Files 24 24
Lines 1139 1143 +4
==========================================
+ Hits 942 946 +4
Misses 197 197
Continue to review full report at Codecov.
|
2aa685c
to
6c77dc5
Compare
6c77dc5
to
07490f6
Compare
Technically you want
Only when testing stuff in REPL as standard vectors are quicker to type. |
Yes I agree that something more is required, but I think this is as far as this PR needs to go. Do you agree? |
Yes, the "more" should be dealt with in a separate PR (I'll look in renaming/polishing my proposal soon). The current PR looks good to me, by the way. |
Is this ready for reviewing/merging? I actually agree with @Kolaru's view that this is already ok. |
Yes, in my opinion it's ready to merge. |
Thanks! |
Fixes #240.
Defines
∈
forIntervalBox
correctly.cc @Kolaru