Circuit (computer science)
A circuit in computer theory is a theoretical structure simulating a real circuit, in which input values enter in one part of the circuit, go through gates which do some computation and output an answer. An important special case of circuits is the boolean circuit.
Circuits are defined in terms of the gates they contain and the values the gates can take. For example, binary circuits' values are boolean values, and the gates can be binary AND and OR gates and unary NOT gates. In integer circuits, the values are set of integers and the gates are set union, intersection, complement, and the arithmetic operations + and
Formal definition
A circuit is composed of a set of values , a set of gate labels which are families of functions from to , where is a non-negative integer (with for constant gates), and a labelled directed acyclic graph, the labels of which are elements of , a gate can label a node of in-degree if and only if is defined on .
Notions
The nodes of in-degree 0 are called the input nodes, or the leaves. If there is an edge from to then is called a child of , we suppose there is an order on the vertices, so we can speak of the th child of a vertex when is less than the in-degree of this vertex.
The size of a circuit is the number of nodes of a circuit.
The depth of a node is the size of the longest path beginning in , in particular, the gates of out-degree 0 are the only gates of depth 1. The depth of the circuit is the size of the longest path in the circuit. The level is the set of gates of depth .
A levelled circuit is a circuit where the edges to nodes of depth comes only from nodes of depth or from input nodes. Another way to see it is that there are edges only between adjacent levels.
The width of a labelled circuit is the size of the biggest level.
Evaluation
The value of a node is defined recursively on the depth of the nodes, the gate of in-degree and label is where is the value of the th son of .
There is one node of out-degree 0 which will be called the output node, the value of the circuit is the value of the output node.
Circuit as fonctions
The labels of the leaves can also be variables which take values in . If there are variables, then the circuit can be seen as a function from to . It is then usual to consider a family of circuits , a sequence of circuits indexed by the integers where the circuit has got variables. Families of circuits can thus be seen as functions from to .
The notions of size, depth and width can be naturally extended to families of functions, they become functions from to , for example size() is the size of the th circuit of the family.
It is usual for some kind of circuits, like boolean circuit, to add restrictions to the circuits one can accept in the family, like having a bounded width, that , which means that the size function of a given family is bounded by a polynomial, that for any function , that the in-degree should be bounded, either by a constant or by a polynomial in the number of inputs.
Complexity and algorithmic problems
Circuit are often used in computational complexity and algorithm theory, there are two different questions one may want to answer:
- Given a circuit, what is the complexity of computing the value of its output. For example, over boolean circuits, this question is P complete and over integer circuits it is not known to be decidable.
- Given a language, what is the minimal size (resp. depth) function which recognizes the language. It is here that, usually, some restrictions are added to the form of the circuits. Over boolean circuit this creates formalism like NC.
References
Circuit is an object used in many fields, but there is no publication about circuit themselves, so those reference are example of book and article speaking of some kind of circuit, but not directly speaking of "circuit" for themselves.
- Vollmer, Heribert (1999). Introduction to Circuit Complexity. Berlin: Springer. ISBN 3-540-64310-9.
- Template:Cite article