Skip to content
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

Merge /api/improve and /api/alternatives, remove custom Herbie properties #1164

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Woops, fix
pavpanchekha committed Mar 18, 2025
commit d73f11150740b5fabeb474eae1f31eca43bc19ba
4 changes: 2 additions & 2 deletions src/api/sandbox.rkt
Original file line number Diff line number Diff line change
@@ -195,11 +195,11 @@
(timeline-event! 'start) ; Prevents the timeline from being empty.
(define result
(match command
['alternatives (get-improve test pcontext)]
['alternatives (get-alternatives test pcontext)]
['cost (get-cost test)]
['errors (get-errors test pcontext)]
['explanations (get-explanations test pcontext)]
['improve (get-improve test (get-sample test))]
['improve (get-alternatives test (get-sample test))]
['local-error (get-local-error test pcontext)]
['sample (get-sample test)]
[_ (error 'compute-result "unknown command ~a" command)]))