Documentation

Complexitylib.Classes.P.Defs

P, FP, and PSPACE #

This file defines P (polynomial time), FP (polynomial-time functions), and PSPACE (polynomial space) in terms of the base classes DTIME and DSPACE.

P is the class of languages decidable by a deterministic TM in polynomial time: P = ⋃_k DTIME(n^k).

Equations
Instances For

    FP is the class of functions computable by a deterministic TM in polynomial time.

    Equations
    Instances For

      PSPACE is the class of languages decidable by a deterministic TM using polynomial auxiliary space: PSPACE = ⋃_k DSPACE(n^k).

      Equations
      Instances For