-
Notifications
You must be signed in to change notification settings - Fork 6
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
Coq results should have separate cases for cbv, lazy, and vm_compute (and maybe native_compute) #4
Comments
After looking at this repo (from the ping I received on the other issue), I was meaning to post exactly this: I think you should give results for |
compute is an alias for cbv |
Is the following correct: we can test conversion checking with |
That's almost correct. We can test conversion checking with the |
I added now all columns for the different evaluators. Question: is there a way to do e.g. this
without |
What was the code that you used? You can do |
|
Both issues are caused by forgetting an |
Kernel conversion uses something akin to
lazy
. The fastest normalization is probablyvm_compute
, unless you are starting from very small terms and ending up with very small terms, but have very large intermediate terms or very slow computations, in which casenative_compute
may be faster.The text was updated successfully, but these errors were encountered: