-
Notifications
You must be signed in to change notification settings - Fork 35
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
WIP add a test for @interpret^2 #252
base: master
Are you sure you want to change the base?
Conversation
Actually: julia> JuliaInterpreter.disable_recycle[] = true
true
julia> f() = @interpret sin(2.0)
f (generic function with 1 method)
julia> f()
0.9092974268256817
julia> @interpret f()
1.0 |
Codecov Report
@@ Coverage Diff @@
## master #252 +/- ##
==========================================
+ Coverage 87.15% 87.21% +0.05%
==========================================
Files 14 14
Lines 1985 1986 +1
==========================================
+ Hits 1730 1732 +2
+ Misses 255 254 -1
Continue to review full report at Codecov.
|
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #252 +/- ##
==========================================
+ Coverage 87.15% 87.21% +0.05%
==========================================
Files 14 14
Lines 1985 1986 +1
==========================================
+ Hits 1730 1732 +2
+ Misses 255 254 -1
Continue to review full report at Codecov.
|
I'd rather have a clear understanding of what steps in logic fail under these circumstances. (Maybe you do, but I don't.) |
Hence WIP :) |
Closes #228