Trisha Shetty (Editor)

Circuit (computer science)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In theoretical computer science, a circuit is a model of computation in which input values proceed through a sequence of gates, each of which computes a function. Circuits of this kind provide a generalization of Boolean circuits and a mathematical model for digital logic circuits. Circuits are defined by the gates they contain and the values the gates can produce. For example, the values in a Boolean circuit are boolean values, and the circuit includes conjunction, disjunction, and negation gates. The values in an integer circuit are sets of integers and the gates compute set union, set intersection, and set complement, as well as the arithmetic operations addition and multiplication.

Contents

Formal definition

A circuit is a triple ( M , L , G ) , where

  • M is a set of values,
  • L is a set of gate labels, each of which is a function from M i to M for some non-negative integer i (where i represents the number of inputs to the gate), and
  • G is a labelled directed acyclic graph with labels from L .
  • The vertices of the graph are called gates. For each gate g of in-degree i , the gate g can be labeled by an element of L if and only if is defined on M i .

    Terminology

    The gates of in-degree 0 are called inputs or leaves. The gates of out-degree 0 are called outputs. If there is an edge from gate g to gate h in the graph G then h is called a child of g . We suppose there is an order on the vertices of the graph, so we can speak of the k th child of a gate when k is less than the out-degree of the gate.

    The size of a circuit is the number of nodes of a circuit. The depth of a gate g is the length of the longest path in G beginning at g up to an output gate. In particular, the gates of out-degree 0 are the only gates of depth 1. The depth of a circuit is the maximum depth of any gate.

    Level i is the set of all gates of depth i . A levelled circuit is a circuit in which the edges to gates of depth i comes only from gates of depth i + 1 or from the inputs. In other words, edges only exist between adjacent levels of the circuit. The width of a levelled circuit is the maximum size of any level.

    Evaluation

    The exact value V ( g ) of a gate g with in-degree i and label l is defined recursively for all gates g .

    V ( g ) = { l if  g  is an input l ( V ( g 1 ) , , V ( g i ) ) otherwise,

    where each g j is a parent of g .

    The value of the circuit is the value of each of the output gates.

    Circuits as functions

    The labels of the leaves can also be variables which take values in M . If there are n leaves, then the circuit can be seen as a function from M n to M . It is then usual to consider a family of circuits ( C n ) n N , a sequence of circuits indexed by the integers where the circuit C n has n variables. Families of circuits can thus be seen as functions from M to M .

    The notions of size, depth and width can be naturally extended to families of functions, becoming functions from N to N ; for example, s i z e ( n ) is the size of the n th circuit of the family.

    Complexity and algorithmic problems

    Computing the output of a given Boolean circuit on a specific input is P-complete problem. If the input is an integer circuit, however, it is unknown whether this problem is decidable.

    Circuit complexity attempts to classify Boolean functions with respect to the size or depth of circuits that can compute them.

    References

    Circuit (computer science) Wikipedia