fbpx
Wikipedia

Parameterized complexity

In computer science, parameterized complexity is a branch of computational complexity theory that focuses on classifying computational problems according to their inherent difficulty with respect to multiple parameters of the input or output. The complexity of a problem is then measured as a function of those parameters. This allows the classification of NP-hard problems on a finer scale than in the classical setting, where the complexity of a problem is only measured as a function of the number of bits in the input. This appears to have been first demonstrated in Gurevich, Stockmeyer & Vishkin (1984). The first systematic work on parameterized complexity was done by Downey & Fellows (1999).

Under the assumption that P ≠ NP, there exist many natural problems that require superpolynomial running time when complexity is measured in terms of the input size only but that are computable in a time that is polynomial in the input size and exponential or worse in a parameter k. Hence, if k is fixed at a small value and the growth of the function over k is relatively small then such problems can still be considered "tractable" despite their traditional classification as "intractable".

The existence of efficient, exact, and deterministic solving algorithms for NP-complete, or otherwise NP-hard, problems is considered unlikely, if input parameters are not fixed; all known solving algorithms for these problems require time that is exponential (so in particular superpolynomial) in the total size of the input. However, some problems can be solved by algorithms that are exponential only in the size of a fixed parameter while polynomial in the size of the input. Such an algorithm is called a fixed-parameter tractable (FPT) algorithm, because the problem can be solved efficiently (i.e., in polynomial time) for constant values of the fixed parameter.

Problems in which some parameter k is fixed are called parameterized problems. A parameterized problem that allows for such an FPT algorithm is said to be a fixed-parameter tractable problem and belongs to the class FPT, and the early name of the theory of parameterized complexity was fixed-parameter tractability.

Many problems have the following form: given an object x and a nonnegative integer k, does x have some property that depends on k? For instance, for the vertex cover problem, the parameter can be the number of vertices in the cover. In many applications, for example when modelling error correction, one can assume the parameter to be "small" compared to the total input size. Then it is challenging to find an algorithm that is exponential only in k, and not in the input size.

In this way, parameterized complexity can be seen as two-dimensional complexity theory. This concept is formalized as follows:

A parameterized problem is a language , where is a finite alphabet. The second component is called the parameter of the problem.
A parameterized problem L is fixed-parameter tractable if the question "?" can be decided in running time , where f is an arbitrary function depending only on k. The corresponding complexity class is called FPT.

For example, there is an algorithm that solves the vertex cover problem in time,[1] where n is the number of vertices and k is the size of the vertex cover. This means that vertex cover is fixed-parameter tractable with the size of the solution as the parameter.

Complexity classes edit

FPT edit

FPT contains the fixed parameter tractable problems, which are those that can be solved in time   for some computable function f. Typically, this function is thought of as single exponential, such as  , but the definition admits functions that grow even faster. This is essential for a large part of the early history of this class. The crucial part of the definition is to exclude functions of the form  , such as  .

The class FPL (fixed parameter linear) is the class of problems solvable in time   for some computable function f.[2] FPL is thus a subclass of FPT. An example is the Boolean satisfiability problem, parameterised by the number of variables. A given formula of size m with k variables can be checked by brute force in time  . A vertex cover of size k in a graph of order n can be found in time  , so the vertex cover problem is also in FPL.

An example of a problem that is thought not to be in FPT is graph coloring parameterised by the number of colors. It is known that 3-coloring is NP-hard, and an algorithm for graph k-coloring in time   for   would run in polynomial time in the size of the input. Thus, if graph coloring parameterised by the number of colors were in FPT, then P = NP.

There are a number of alternative definitions of FPT. For example, the running-time requirement can be replaced by  . Also, a parameterised problem is in FPT if it has a so-called kernel. Kernelization is a preprocessing technique that reduces the original instance to its "hard kernel", a possibly much smaller instance that is equivalent to the original instance but has a size that is bounded by a function in the parameter.

FPT is closed under a parameterised notion of reductions called fpt-reductions. Such reductions transform an instance   of some problem into an equivalent instance   of another problem (with  ) and can be computed in time   where   is a polynomial.

Obviously, FPT contains all polynomial-time computable problems. Moreover, it contains all optimisation problems in NP that allow an efficient polynomial-time approximation scheme (EPTAS).

W hierarchy edit

The W hierarchy is a collection of computational complexity classes. A parameterized problem is in the class W[i], if every instance   can be transformed (in fpt-time) to a combinatorial circuit that has weft at most i, such that   if and only if there is a satisfying assignment to the inputs that assigns 1 to exactly k inputs. The weft is the largest number of logical units with fan-in greater than two on any path from an input to the output. The total number of logical units on the paths (known as depth) must be limited by a constant that holds for all instances of the problem.

Note that   and   for all  . The classes in the W hierarchy are also closed under fpt-reduction.

A complete problem for W[i] is Weighted i-Normalized Satisfiability:[3] given a Boolean formula written as an AND of ORs of ANDs of ... of possibly negated variables, with   layers of ANDs or ORs (and i alternations between AND and OR), can it be satisfied by setting exactly k variables to 1?

Many natural computational problems occupy the lower levels, W[1] and W[2].

W[1] edit

Examples of W[1]-complete problems include

  • deciding if a given graph contains a clique of size k
  • deciding if a given graph contains an independent set of size k
  • deciding if a given nondeterministic single-tape Turing machine accepts within k steps ("short Turing machine acceptance" problem). This also applies to nondeterministic Turing machines with f(k) tapes and even f(k) of f(k)-dimensional tapes, but even with this extension, the restriction to f(k) tape alphabet size is fixed-parameter tractable. Crucially, the branching of the Turing machine at each step is allowed to depend on n, the size of the input. In this way, the Turing machine may explore nO(k) computation paths.

W[2] edit

Examples of W[2]-complete problems include

  • deciding if a given graph contains a dominating set of size k
  • deciding if a given nondeterministic multi-tape Turing machine accepts within k steps ("short multi-tape Turing machine acceptance" problem). Crucially, the branching is allowed to depend on n (like the W[1] variant), as is the number of tapes. An alternate W[2]-complete formulation allows only single-tape Turing machines, but the alphabet size may depend on n.

W[t] edit

  can be defined using the family of Weighted Weft-t-Depth-d SAT problems for  :   is the class of parameterized problems that fpt-reduce to this problem, and  .

Here, Weighted Weft-t-Depth-d SAT is the following problem:

  • Input: A Boolean formula of depth at most d and weft at most t, and a number k. The depth is the maximal number of gates on any path from the root to a leaf, and the weft is the maximal number of gates of fan-in at least three on any path from the root to a leaf.
  • Question: Does the formula have a satisfying assignment of Hamming weight exactly k?

It can be shown that for   the problem Weighted t-Normalize SAT is complete for   under fpt-reductions.[4] Here, Weighted t-Normalize SAT is the following problem:

  • Input: A Boolean formula of depth at most t with an AND-gate on top, and a number k.
  • Question: Does the formula have a satisfying assignment of Hamming weight exactly k?

W[P] edit

W[P] is the class of problems that can be decided by a nondeterministic  -time Turing machine that makes at most   nondeterministic choices in the computation on   (a k-restricted Turing machine). Flum & Grohe (2006)

It is known that FPT is contained in W[P], and the inclusion is believed to be strict. However, resolving this issue would imply a solution to the P versus NP problem.

Other connections to unparameterised computational complexity are that FPT equals W[P] if and only if circuit satisfiability can be decided in time  , or if and only if there is a computable, nondecreasing, unbounded function f such that all languages recognised by a nondeterministic polynomial-time Turing machine using   nondeterministic choices are in P.

W[P] can be loosely thought of as the class of problems where we have a set S of n items, and we want to find a subset   of size k such that a certain property holds. We can encode a choice as a list of k integers, stored in binary. Since the highest any of these numbers can be is n,   bits are needed for each number. Therefore   total bits are needed to encode a choice. Therefore we can select a subset   with   nondeterministic choices.

XP edit

XP is the class of parameterized problems that can be solved in time   for some computable function f. These problems are called slicewise polynomial, in the sense that each "slice" of fixed k has a polynomial algorithm, although possibly with a different exponent for each k. Compare this with FPT, which merely allows a different constant prefactor for each value of k. XP contains FPT, and it is known that this containment is strict by diagonalization.

para-NP edit

para-NP is the class of parameterized problems that can be solved by a nondeterministic algorithm in time   for some computable function f. It is known that   if and only if  .[5]

A problem is para-NP-hard if it is  -hard already for a constant value of the parameter. That is, there is a "slice" of fixed k that is  -hard. A parameterized problem that is  -hard cannot belong to the class  , unless  . A classic example of a  -hard parameterized problem is graph coloring, parameterized by the number k of colors, which is already  -hard for   (see Graph coloring#Computational complexity).

A hierarchy edit

The A hierarchy is a collection of computational complexity classes similar to the W hierarchy. However, while the W hierarchy is a hierarchy contained in NP, the A hierarchy more closely mimics the polynomial-time hierarchy from classical complexity. It is known that A[1] = W[1] holds.

See also edit

Notes edit

  1. ^ Chen, Kanj & Xia 2006
  2. ^ Grohe (1999)
  3. ^ Downey, Rod G.; Fellows, Michael R. (August 1995). "Fixed-Parameter Tractability and Completeness I: Basic Results". SIAM Journal on Computing. 24 (4): 873–921. doi:10.1137/S0097539792228228. ISSN 0097-5397.
  4. ^ Buss, Jonathan F; Islam, Tarique (2006). "Simplifying the weft hierarchy". Theoretical Computer Science. 351 (3): 303–313. doi:10.1016/j.tcs.2005.10.002.
  5. ^ Flum & Grohe (2006), p. 39.

References edit

  • Chen, Jianer; Kanj, Iyad A.; Xia, Ge (2006). Improved Parameterized Upper Bounds for Vertex Cover. Mathematical Foundations of Computer Science. Vol. 4162. Berlin, Heidelberg: Springer. pp. 238–249. CiteSeerX 10.1.1.432.831. doi:10.1007/11821069_21. ISBN 978-3-540-37791-7.
  • Cygan, Marek; Fomin, Fedor V.; Kowalik, Lukasz; Lokshtanov, Daniel; Marx, Daniel; Pilipczuk, Marcin; Pilipczuk, Michal; Saurabh, Saket (2015). Parameterized Algorithms. Springer. p. 555. ISBN 978-3-319-21274-6.
  • Downey, Rod G.; Fellows, Michael R. (1999). Parameterized Complexity. Springer. ISBN 978-0-387-94883-6.
  • Flum, Jörg; Grohe, Martin (2006). Parameterized Complexity Theory. Springer. ISBN 978-3-540-29952-3.
  • Fomin, Fedor V.; Lokshtanov, Daniel; Saurabh, Saket; Zehavi, Meirav (2019). Kernelization: Theory of Parameterized Preprocessing. Cambridge University Press. p. 528. doi:10.1017/9781107415157. ISBN 978-1107057760. S2CID 263888582.
  • Gurevich, Yuri; Stockmeyer, Larry; Vishkin, Uzi (1984). Solving NP-hard problems on graphs that are almost trees and an application to facility location problems. Journal of the ACM. p. 459-473.
  • Niedermeier, Rolf (2006). . Oxford University Press. ISBN 978-0-19-856607-6. Archived from the original on 2008-09-24.
  • Grohe, Martin (1999). "Descriptive and Parameterized Complexity". Computer Science Logic. Lecture Notes in Computer Science. Vol. 1683. Springer Berlin Heidelberg. pp. 14–31. CiteSeerX 10.1.1.25.9250. doi:10.1007/3-540-48168-0_3. ISBN 978-3-540-66536-6.
  • The Computer Journal. Volume 51, Numbers 1 and 3 (2008). . Special Double Issue on Parameterized Complexity with 15 survey articles, book review, and a Foreword by Guest Editors R. Downey, M. Fellows and M. Langston.

External links edit

  • Wiki on parameterized complexity
  • Compendium of Parameterized Problems

parameterized, complexity, computer, science, parameterized, complexity, branch, computational, complexity, theory, that, focuses, classifying, computational, problems, according, their, inherent, difficulty, with, respect, multiple, parameters, input, output,. In computer science parameterized complexity is a branch of computational complexity theory that focuses on classifying computational problems according to their inherent difficulty with respect to multiple parameters of the input or output The complexity of a problem is then measured as a function of those parameters This allows the classification of NP hard problems on a finer scale than in the classical setting where the complexity of a problem is only measured as a function of the number of bits in the input This appears to have been first demonstrated in Gurevich Stockmeyer amp Vishkin 1984 The first systematic work on parameterized complexity was done by Downey amp Fellows 1999 Under the assumption that P NP there exist many natural problems that require superpolynomial running time when complexity is measured in terms of the input size only but that are computable in a time that is polynomial in the input size and exponential or worse in a parameter k Hence if k is fixed at a small value and the growth of the function over k is relatively small then such problems can still be considered tractable despite their traditional classification as intractable The existence of efficient exact and deterministic solving algorithms for NP complete or otherwise NP hard problems is considered unlikely if input parameters are not fixed all known solving algorithms for these problems require time that is exponential so in particular superpolynomial in the total size of the input However some problems can be solved by algorithms that are exponential only in the size of a fixed parameter while polynomial in the size of the input Such an algorithm is called a fixed parameter tractable FPT algorithm because the problem can be solved efficiently i e in polynomial time for constant values of the fixed parameter Problems in which some parameter k is fixed are called parameterized problems A parameterized problem that allows for such an FPT algorithm is said to be a fixed parameter tractable problem and belongs to the class FPT and the early name of the theory of parameterized complexity was fixed parameter tractability Many problems have the following form given an object x and a nonnegative integer k does x have some property that depends on k For instance for the vertex cover problem the parameter can be the number of vertices in the cover In many applications for example when modelling error correction one can assume the parameter to be small compared to the total input size Then it is challenging to find an algorithm that is exponential only in k and not in the input size In this way parameterized complexity can be seen as two dimensional complexity theory This concept is formalized as follows A parameterized problem is a language L S N displaystyle L subseteq Sigma times mathbb N where S displaystyle Sigma is a finite alphabet The second component is called the parameter of the problem A parameterized problem L is fixed parameter tractable if the question x k L displaystyle x k in L can be decided in running time f k x O 1 displaystyle f k cdot x O 1 where f is an arbitrary function depending only on k The corresponding complexity class is called FPT For example there is an algorithm that solves the vertex cover problem in O k n 1 274 k displaystyle O kn 1 274 k time 1 where n is the number of vertices and k is the size of the vertex cover This means that vertex cover is fixed parameter tractable with the size of the solution as the parameter Contents 1 Complexity classes 1 1 FPT 1 2 W hierarchy 1 2 1 W 1 1 2 2 W 2 1 2 3 W t 1 2 4 W P 1 3 XP 1 4 para NP 1 5 A hierarchy 2 See also 3 Notes 4 References 5 External linksComplexity classes editFPT edit FPT contains the fixed parameter tractable problems which are those that can be solved in time f k x O 1 displaystyle f k cdot x O 1 nbsp for some computable function f Typically this function is thought of as single exponential such as 2 O k displaystyle 2 O k nbsp but the definition admits functions that grow even faster This is essential for a large part of the early history of this class The crucial part of the definition is to exclude functions of the form f n k displaystyle f n k nbsp such as k n displaystyle k n nbsp The class FPL fixed parameter linear is the class of problems solvable in time f k x displaystyle f k cdot x nbsp for some computable function f 2 FPL is thus a subclass of FPT An example is the Boolean satisfiability problem parameterised by the number of variables A given formula of size m with k variables can be checked by brute force in time O 2 k m displaystyle O 2 k m nbsp A vertex cover of size k in a graph of order n can be found in time O 2 k n displaystyle O 2 k n nbsp so the vertex cover problem is also in FPL An example of a problem that is thought not to be in FPT is graph coloring parameterised by the number of colors It is known that 3 coloring is NP hard and an algorithm for graph k coloring in time f k n O 1 displaystyle f k n O 1 nbsp for k 3 displaystyle k 3 nbsp would run in polynomial time in the size of the input Thus if graph coloring parameterised by the number of colors were in FPT then P NP There are a number of alternative definitions of FPT For example the running time requirement can be replaced by f k x O 1 displaystyle f k x O 1 nbsp Also a parameterised problem is in FPT if it has a so called kernel Kernelization is a preprocessing technique that reduces the original instance to its hard kernel a possibly much smaller instance that is equivalent to the original instance but has a size that is bounded by a function in the parameter FPT is closed under a parameterised notion of reductions called fpt reductions Such reductions transform an instance x k displaystyle x k nbsp of some problem into an equivalent instance x k displaystyle x k nbsp of another problem with k g k displaystyle k leq g k nbsp and can be computed in time f k p x displaystyle f k cdot p x nbsp where p displaystyle p nbsp is a polynomial Obviously FPT contains all polynomial time computable problems Moreover it contains all optimisation problems in NP that allow an efficient polynomial time approximation scheme EPTAS W hierarchy edit The W hierarchy is a collection of computational complexity classes A parameterized problem is in the class W i if every instance x k displaystyle x k nbsp can be transformed in fpt time to a combinatorial circuit that has weft at most i such that x k L displaystyle x k in L nbsp if and only if there is a satisfying assignment to the inputs that assigns 1 to exactly k inputs The weft is the largest number of logical units with fan in greater than two on any path from an input to the output The total number of logical units on the paths known as depth must be limited by a constant that holds for all instances of the problem Note that F P T W 0 displaystyle mathsf FPT W 0 nbsp and W i W j displaystyle W i subseteq W j nbsp for all i j displaystyle i leq j nbsp The classes in the W hierarchy are also closed under fpt reduction A complete problem for W i is Weighted i Normalized Satisfiability 3 given a Boolean formula written as an AND of ORs of ANDs of of possibly negated variables with i 1 displaystyle i 1 nbsp layers of ANDs or ORs and i alternations between AND and OR can it be satisfied by setting exactly k variables to 1 Many natural computational problems occupy the lower levels W 1 and W 2 W 1 edit Examples of W 1 complete problems include deciding if a given graph contains a clique of size k deciding if a given graph contains an independent set of size k deciding if a given nondeterministic single tape Turing machine accepts within k steps short Turing machine acceptance problem This also applies to nondeterministic Turing machines with f k tapes and even f k of f k dimensional tapes but even with this extension the restriction to f k tape alphabet size is fixed parameter tractable Crucially the branching of the Turing machine at each step is allowed to depend on n the size of the input In this way the Turing machine may explore nO k computation paths W 2 edit Examples of W 2 complete problems include deciding if a given graph contains a dominating set of size k deciding if a given nondeterministic multi tape Turing machine accepts within k steps short multi tape Turing machine acceptance problem Crucially the branching is allowed to depend on n like the W 1 variant as is the number of tapes An alternate W 2 complete formulation allows only single tape Turing machines but the alphabet size may depend on n W t edit W t displaystyle W t nbsp can be defined using the family of Weighted Weft t Depth d SAT problems for d t displaystyle d geq t nbsp W t d displaystyle W t d nbsp is the class of parameterized problems that fpt reduce to this problem and W t d t W t d displaystyle W t bigcup d geq t W t d nbsp Here Weighted Weft t Depth d SAT is the following problem Input A Boolean formula of depth at most d and weft at most t and a number k The depth is the maximal number of gates on any path from the root to a leaf and the weft is the maximal number of gates of fan in at least three on any path from the root to a leaf Question Does the formula have a satisfying assignment of Hamming weight exactly k It can be shown that for t 2 displaystyle t geq 2 nbsp the problem Weighted t Normalize SAT is complete for W t displaystyle W t nbsp under fpt reductions 4 Here Weighted t Normalize SAT is the following problem Input A Boolean formula of depth at most t with an AND gate on top and a number k Question Does the formula have a satisfying assignment of Hamming weight exactly k W P edit W P is the class of problems that can be decided by a nondeterministic h k x O 1 displaystyle h k cdot x O 1 nbsp time Turing machine that makes at most O f k log n displaystyle O f k cdot log n nbsp nondeterministic choices in the computation on x k displaystyle x k nbsp a k restricted Turing machine Flum amp Grohe 2006 It is known that FPT is contained in W P and the inclusion is believed to be strict However resolving this issue would imply a solution to the P versus NP problem Other connections to unparameterised computational complexity are that FPT equals W P if and only if circuit satisfiability can be decided in time exp o n m O 1 displaystyle exp o n m O 1 nbsp or if and only if there is a computable nondecreasing unbounded function f such that all languages recognised by a nondeterministic polynomial time Turing machine using f n log n displaystyle f n log n nbsp nondeterministic choices are in P W P can be loosely thought of as the class of problems where we have a set S of n items and we want to find a subset T S displaystyle T subset S nbsp of size k such that a certain property holds We can encode a choice as a list of k integers stored in binary Since the highest any of these numbers can be is n log 2 n displaystyle lceil log 2 n rceil nbsp bits are needed for each number Therefore k log 2 n displaystyle k cdot lceil log 2 n rceil nbsp total bits are needed to encode a choice Therefore we can select a subset T S displaystyle T subset S nbsp with O k log n displaystyle O k cdot log n nbsp nondeterministic choices XP edit XP is the class of parameterized problems that can be solved in time n f k displaystyle n f k nbsp for some computable function f These problems are called slicewise polynomial in the sense that each slice of fixed k has a polynomial algorithm although possibly with a different exponent for each k Compare this with FPT which merely allows a different constant prefactor for each value of k XP contains FPT and it is known that this containment is strict by diagonalization This section needs expansion You can help by adding to it April 2019 para NP edit para NP is the class of parameterized problems that can be solved by a nondeterministic algorithm in time f k x O 1 displaystyle f k cdot x O 1 nbsp for some computable function f It is known that FPT para NP displaystyle textsf FPT textsf para NP nbsp if and only if P NP displaystyle textsf P textsf NP nbsp 5 A problem is para NP hard if it is NP displaystyle textsf NP nbsp hard already for a constant value of the parameter That is there is a slice of fixed k that is NP displaystyle textsf NP nbsp hard A parameterized problem that is para NP displaystyle textsf para NP nbsp hard cannot belong to the class XP displaystyle textsf XP nbsp unless P NP displaystyle textsf P textsf NP nbsp A classic example of a para NP displaystyle textsf para NP nbsp hard parameterized problem is graph coloring parameterized by the number k of colors which is already NP displaystyle textsf NP nbsp hard for k 3 displaystyle k 3 nbsp see Graph coloring Computational complexity A hierarchy edit The A hierarchy is a collection of computational complexity classes similar to the W hierarchy However while the W hierarchy is a hierarchy contained in NP the A hierarchy more closely mimics the polynomial time hierarchy from classical complexity It is known that A 1 W 1 holds See also editParameterized approximation algorithm for optimization problems an algorithm running in FPT time might approximate the solution Notes edit Chen Kanj amp Xia 2006 Grohe 1999 Downey Rod G Fellows Michael R August 1995 Fixed Parameter Tractability and Completeness I Basic Results SIAM Journal on Computing 24 4 873 921 doi 10 1137 S0097539792228228 ISSN 0097 5397 Buss Jonathan F Islam Tarique 2006 Simplifying the weft hierarchy Theoretical Computer Science 351 3 303 313 doi 10 1016 j tcs 2005 10 002 Flum amp Grohe 2006 p 39 References editChen Jianer Kanj Iyad A Xia Ge 2006 Improved Parameterized Upper Bounds for Vertex Cover Mathematical Foundations of Computer Science Vol 4162 Berlin Heidelberg Springer pp 238 249 CiteSeerX 10 1 1 432 831 doi 10 1007 11821069 21 ISBN 978 3 540 37791 7 Cygan Marek Fomin Fedor V Kowalik Lukasz Lokshtanov Daniel Marx Daniel Pilipczuk Marcin Pilipczuk Michal Saurabh Saket 2015 Parameterized Algorithms Springer p 555 ISBN 978 3 319 21274 6 Downey Rod G Fellows Michael R 1999 Parameterized Complexity Springer ISBN 978 0 387 94883 6 Flum Jorg Grohe Martin 2006 Parameterized Complexity Theory Springer ISBN 978 3 540 29952 3 Fomin Fedor V Lokshtanov Daniel Saurabh Saket Zehavi Meirav 2019 Kernelization Theory of Parameterized Preprocessing Cambridge University Press p 528 doi 10 1017 9781107415157 ISBN 978 1107057760 S2CID 263888582 Gurevich Yuri Stockmeyer Larry Vishkin Uzi 1984 Solving NP hard problems on graphs that are almost trees and an application to facility location problems Journal of the ACM p 459 473 Niedermeier Rolf 2006 Invitation to Fixed Parameter Algorithms Oxford University Press ISBN 978 0 19 856607 6 Archived from the original on 2008 09 24 Grohe Martin 1999 Descriptive and Parameterized Complexity Computer Science Logic Lecture Notes in Computer Science Vol 1683 Springer Berlin Heidelberg pp 14 31 CiteSeerX 10 1 1 25 9250 doi 10 1007 3 540 48168 0 3 ISBN 978 3 540 66536 6 The Computer Journal Volume 51 Numbers 1 and 3 2008 The Computer Journal Special Double Issue on Parameterized Complexity with 15 survey articles book review and a Foreword by Guest Editors R Downey M Fellows and M Langston External links editWiki on parameterized complexity Compendium of Parameterized Problems Retrieved from https en wikipedia org w index php title Parameterized complexity amp oldid 1191003077, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.