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
{{ message }}
This repository was archived by the owner on Nov 12, 2025. It is now read-only.
The following program
executes in constant time in n as one would expect. Compilation, however, takes exponential time:
In fact, at n = 3200, compilation virtually stalls (on my laptop) after having eaten up the whole memory (8GB). Notice that replacing
with
yields constant compile times. Is it possible to construct vectors of natural numbers of length n in at most linear time (in n) ?