Y
Hacker News
new
|
ask
|
show
|
jobs
by
reuben364
979 days ago
Are all polynomial time algorithms implementable with primitive recursion? You would need to know the constant factor, right?
1 comments
adastra22
979 days ago
In practice, yes. And for real world applications I know of, the depth of primitive recursion is small enough that loops can be fully unrolled. So e.g. bitcoin’s lack of a looping construct isn’t even a problem.
link