Subpolynomial
Subpolynomial describes growth that is slower than any polynomial in the input size n. Formally, a function f(n) is subpolynomial if for every fixed positive real ε > 0, f(n) = o(n^ε) as n tends to infinity. Equivalently, f(n) = exp(o(log n)). In complexity theory, a problem that can be solved in subpolynomial time runs in time T(n) = n^{o(1)}.
Examples of subpolynomial functions include polylogarithmic functions such as (log n)^k for any fixed k, as
Subpolynomial time is a descriptive growth notion rather than a standalone complexity class. It is often contrasted
Usage of the term appears in discussions of algorithmic efficiency, number theory, and complexity bounds where