We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
generate-term
the program
#lang racket (require redex/reduction-semantics) (define-language L (b ::= a)) ((generate-term L (cross b_1)) 1)
Gives the error
redex/private/rg.rkt:182:2: hash-ref: no value found for key key: 'b_1-b_1
Instead of complaining that b_1 isn't a non-terminal in L.
b_1
Also if I add a #:i-th:
#:i-th
#lang racket (require redex/reduction-semantics) (define-language L (b ::= a)) ((generate-term L (cross b_1) #:i-th) 1)
The error message points to the middle of the contract library:
collects/racket/contract/private/arrow-val-first.rkt:390:18: hash-ref: no value found for key key: 'b_1-b_1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the program
Gives the error
Instead of complaining that
b_1
isn't a non-terminal in L.Also if I add a
#:i-th
:The error message points to the middle of the contract library:
The text was updated successfully, but these errors were encountered: