You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#lang racket
(require redex/reduction-semantics)
(define-language L)
(define r
(reduction-relation
L
#:domain 1
(--> any any)))
(generate-term #:source r 5)
This will generate things like, say strings, which are not 1. I would expect this generation to, at least, fail when it attempts to generate a term outside of the domain of the relation.
The text was updated successfully, but these errors were encountered:
Concider:
This will generate things like, say strings, which are not
1
. I would expect this generation to, at least, fail when it attempts to generate a term outside of the domain of the relation.The text was updated successfully, but these errors were encountered: