Closed Archfx closed 1 year ago
make verify-monitor command yields an unbounded identifier in the debug.rkt line 8. This corresponds to the (&& (null? (asserts)) statement.
make verify-monitor
(&& (null? (asserts))
Is there anything that I am missing?
#lang rosette (provide (all-defined-out)) (define target-spectre (make-parameter #f)) (define (concrete?) (&& (null? (asserts)) (equal? #t (pc)))) (define assert-db (make-hash)) ....
Thanks in advance!!
Cloned serval from the serval repo fixed the issue.
make verify-monitor
command yields an unbounded identifier in the debug.rkt line 8. This corresponds to the(&& (null? (asserts))
statement.Is there anything that I am missing?
Thanks in advance!!