Skip to content

Commit 809deb9

Browse files
committed
unit tests fix
1 parent 52fce28 commit 809deb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eval/tests.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@
9797
(define no-hint-cnt 0)
9898
(for ([n (in-range number-of-random-hyperrects)])
9999
(define hyperrect (sample-hyperrect-within-bounds rect-lo rect-hi varc))
100-
(match-define (list res hint converged?) (rival-analyze machine hyperrect))
100+
(match-define (list res hint converged?) (rival-analyze-with-hints machine hyperrect))
101101

102102
; A little hack, the analyze below uses hint from the previous run
103103
; The analyze results must be equal. If not, something wrong has happened
104-
(match-define (list res* hint* converged?*) (rival-analyze machine hyperrect hint))
104+
(match-define (list res* hint* converged?*) (rival-analyze-with-hints machine hyperrect hint))
105105

106106
(with-check-info (['hyperrect hyperrect] ['hint hint])
107107
(check-equal? hint hint*)

0 commit comments

Comments
 (0)