ACC<sup>0</sup>, sometimes called ACC, is a class of computational models and problems defined in circuit complexity, a field of theoretical computer science. The class is defined by augmenting the class AC<sup>0</sup> of constant-depth "alternating circuits" with the ability to count; the acronym ACC stands for "AC with counters". Specifically, a problem belongs to ACC<sup>0</sup> if it can be solved by polynomial-size, constant-depth circuits of unbounded fan-in gates, including gates that count modulo a fixed integer. ACC<sup>0</sup> corresponds to computation in any solvable monoid. The class is very well studied in theoretical computer science because of the algebraic connections and because it is one of the largest concrete computational models for which computational impossibility results, so-called circuit lower bounds, can be proved.
Informally, ACC<sup>0</sup> models the class of computations realised by Boolean circuits of constant depth and polynomial size, where the circuit gates includes "modular counting gates" that compute the number of true inputs modulo some fixed constant.
More formally, a language belongs to AC<sup>0</sup>[m] if it can be computed by a family of circuits C<sub>1</sub>, C<sub>2</sub>, ..., where C<sub>n</sub> takes n inputs, the depth of every circuit is constant, the size of C<sub>n</sub> is a polynomial function of n, and the circuit uses the following gates: AND gates and OR gates of unbounded fan-in, computing the conjunction and disjunction of their inputs; NOT gates computing the negation of their single input; and unbounded fan-in MOD-m gates, which compute 1 if the number of input 1s is a multiple of m. A language belongs to ACC<sup>0</sup> if it belongs to AC<sup>0</sup>[m] for some m.
In some texts, ACC<sup>i</sup> refers to a hierarchy of circuit classes with ACC<sup>0</sup> at its lowest level, where the circuits in ACC<sup>i</sup> have depth O(log<sup>i</sup>n) and polynomial size.
The class ACC<sup>0</sup> can also be defined in terms of computations of nonuniform deterministic finite automata (NUDFA) over monoids. In this framework, the input is interpreted as elements from a fixed monoid, and the input is accepted if the product of the input elements belongs to a given list of monoid elements. The class ACC<sup>0</sup> is the family of languages accepted by a NUDFA over some monoid that does not contain an unsolvable group as a subsemigroup.
The class ACC<sup>0</sup> includes AC<sup>0</sup>. This inclusion is strict, because a single MOD-2 gate computes the parity function, which is known to be impossible to compute in AC<sup>0</sup>. More generally, the function MOD<sub>m</sub> cannot be computed in AC<sup>0</sup>[p] for prime p unless m is a power of p.
The class ACC<sup>0</sup> is included in TC<sup>0</sup>. It is conjectured that ACC<sup>0</sup> is unable to compute the majority function of its inputs (i.e. the inclusion in TC<sup>0</sup> is strict), but this remains unresolved as of July 2018.
Every problem in ACC<sup>0</sup> can be solved by circuits of depth 2, with AND gates of polylogarithmic fan-in at the inputs, connected to a single gate computing some symmetric (not depending on the order of the inputs) function. These circuits are called SYM<sup>+</sup>-circuits. The proof follows ideas of the proof of Toda's theorem.
proves that ACC<sup>0</sup> does not contain NEXPTIME. The proof uses many results in complexity theory, including the time hierarchy theorem, IP = PSPACE, derandomization, and the representation of ACC<sup>0</sup> via SYM<sup>+</sup> circuits. improves this bound and proves that ACC<sup>0</sup> does not contain NQP (nondeterministic quasipolynomial time).
It is known that computing the permanent is impossible for LOGTIME-uniform ACC<sup>0</sup> circuits, which implies that the complexity class PP is not contained in LOGTIME-uniform ACC<sup>0</sup>.