phc-graph/test/speed-many-poly.rkt

22 lines
614 B
Racket
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#lang type-expander
(require (for-syntax racket))
;; This seems to be a slow-starting exponential, with a factor of ×2.5
;; each time n is increased by 100.
;; n=500 takes nearly 3 minutes, n=1000 should, by projection, take 4.5 hours.
(define-for-syntax n 200)
(: f ((Λ (_)
(with-syntax ([(T ...)
(map (λ (i) (gensym 'τ)) (range n))])
#'( (A B T ...)
( (List A T ...) B (List B T ...)))))))
(define (f l v)
(cons v (cdr l)))
(define-syntax (callf stx)
(with-syntax ([(v ...) (range n)])
#'(f (list "a" v ...) 'x)))
(define cf (callf))