معرفی شرکت ها


enigma-quantum-0.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Grover SAT solver.
ویژگی مقدار
سیستم عامل -
نام فایل enigma-quantum-0.2
نام enigma-quantum
نسخه کتابخانه 0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده joeyp722
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/joeyp722/grover_sat_solver
آدرس اینترنتی https://pypi.org/project/enigma-quantum/
مجوز -
# Grover SAT solver The aim of this project is to build a quantum algorithm that can solve SAT problems. SAT refers to satisfiability of a Boolean formula, meaning that there exists a input where the output of the formula is TRUE. Grover refers to Grover's algorithm from quantum computing [1]. This algorithm uses an oracle to find the states it is looking for, hence the oracle must be representative of the Boolean formula to find a matching input. ## Boolean formulas There are three types of Boolean operators: * conjunctions denoted by ^, think of AND gates. * disjunctions denoted by v, think of OR gates. * negations denoted by -, think of NOT gates. A formula might look like: > f = (-x0 v x1)^(x0 v -x1) This is the formula for an XOR gate. The x variables here are the literals, these are the inputs of the Boolean formula and can be TRUE of FALSE. Here f is the output that can be TRUE or FALSE as well. Note that here the disjunctions are within the brackets, where the conjunctions are outside of the brackets. When the formula is in this form it is called the conjunctive normal form (cnf), here the expressions within the brackets are called clauses. Often the Tseytin transformation is used to convert a arbitrary Boolean formula to such a form. In order to satisfy the formula one must find a input that where the output is TRUE as a result. ## NP-Complete problems NP-Complete is a complexity class in which the problem P must obey two criteria: * Must be in NP. * Every problem in NP must be reducible to P within polynomial time. For a problem to be in the NP complexity class the solution to the problem must must verifiable in polynomial time. Polynomial time refers to polynomial time complexity, where time complexity refers to the number of steps a algorithm has to take to get to the answer. When there are n literals the time complexity might scale as O(n), O(n^2), O(n^3), ... . But not as O(2^n), since this is exponential time complexity. Cook [2] showed that SAT problems are NP-Complete. Thus, according to the first criterion it is possible to see if a given input gives TRUE as the output, within polynomial time. Karp [3] Showed that many combinatorial problems can also be reduced to SAT problems, again within polynomial time. Thus, if one can solve SAT problems one can also solve other NP-Complete problems. ## Oracle In order for the oracle to work all the states of interest must receive a phase-flip, meaning that the coefficient in the state vector is multiplied with -1. The oracle is always succeeded by a diffuser. This part of the algorithm can be repeated multiple times depending on the number of iterations. In order to construct an oracle for a cnf. All the clauses have their own ancilla qubit on which a bit-flip is performed if the clause is TRUE. If a clauses are true then a phase-flip is performed via a quantum AND gate, again via a new ancillary qubit that provides a phase kickback. Note that the bit-flips on the ancilla qubits have to be undone, thus the gates responsible for this are performed once more. To gain a better understanding i would suggest looking at: > cnf_oracle.py Or it's subroutine counterpart: > libraries.quantum_gates.cnf_oracle ## Multiple solutions The required number of iterations for Grover's algorithm is pi/4 sqrt(N/k), where N is the number of entries given by the number of literals n, via N = 2^n. And where k is the number of solutions. However, the number of solutions might be unknown. Fortunately this can be mitigated by running the algorithm pi/4 sqrt(N/2^i) number of times, where i is a integer and bounded by 0 <= i <= n. Note that it is possible that the algorithm should be repeated for multiple values of i. The idea is to "approximate" pi/4 sqrt(N/k) with pi/4 sqrt(N/2^i), there is always a i for which the ratio of the two lies between 1/sqrt(2) and sqrt(2). In the Grover algorithm the number of iterations is proportional to rotational angle. This angle determines the coefficients of the "Good" and "Bad" states. > |Psi> = sin(t) |Good> + Cos(t) |Bad> Here the "Good" states are the states that correspond to solution that satisfies the cnf in question, while the "Bad" states correspond to non-solutions. The state vector of the algorithm starts out in a Hadamard state if solutions are very rare compared to non-solutions then the angle t will be very small. Here it is assumed that t approaches zero. In order to only measure "Good" states t has to be 90 degrees. Then the probability of measuring "Good" states will be 100%, since sin^2(90 deg) = 1. However, the angle is proportional to the number of iterations. But the number of iterations might deviate by a factor between 1/sqrt(2) and sqrt(2), this gives angles of 63.64 degrees and 127.28 degrees respectively. These angles give two lower bounds of measuring a "Good" state. The first angle gives a probability of sin^2(63.64 deg) = 80.29%, while the second gives a probability of sin^2(127.28 deg) = 63.11%. Thus, by executing a sufficient number of measurements these "Good" states should be detected. The number of iterations can be determined by summing up pi/4 sqrt(N/2^i) for all i's. > pi/4 sqrt(N) (1/sqrt(2^0) + 1/sqrt(2^1) + ... + 1/sqrt(2^n)) However, the algorithm automatically stops when it has found a "Good" state, this happens for a i where 2^i "approximates" k because of reasons stated above. Let's give this i the name j. Now the number of iterations is: > pi/4 sqrt(N) (1/sqrt(2^j) + ... + 1/sqrt(2^n)) The reason the front terms are missing is because it is favorable to start with the least number of iterations, which is given by to last term, and then the second to last terms, etcetera. Since N = 2^n the expression can be rewritten as: > pi/4 (sqrt(2)^0 + sqrt(2)^1 + ... + sqrt(2)^(n-j)) note that here the order of terms is reversed. The below provides a upper bound for the expression above. > pi/4 (1+sqrt(2)) (2^0 + 2^1 + ... 2^ceil((n-j)/2) ) where ceil is the ceiling function that rounds up. Here yet another upper bound is introduced: > pi/4 (1+sqrt(2)) 2^(ceil((n-j)/2)+1) To see how the bound between the two expressions above works think of binary counting: > 2^0 + 2^1 + 2^2 + ... + 2^q < 2^(q+1) Now back to this expression: > pi/4 (1+sqrt(2)) 2^(ceil((n-j)/2)+1) Here the time Complexity scales as: > O(2^(ceil((n-j)/2) ) Here the ceiling function is hardly relevant, thus: > O( 2^(n-j)/2 ) = O( sqrt(2^n/n^j) ) Plugging in N=2^n and remembering that 2^j "approximates" k the expression becomes approximately: > O( sqrt(N/k) ) which is the same time complexity as if the number of solutions k was known. Although here the number of required iterations might defer by some constant factor. This part of the algorithm is inspired by although not exactly the same as the algorithm described in the paper [4]. ## Further remarks I hope the idea became clear even though the documentation is perhaps rather primitive. The two main take away points are: * The oracle works via phase kickback from ancilla qubits. * Not knowing how many solutions there are doesn't matter for the time complexity. It is still O( sqrt(N/k) ) The heart of the algorithm lies in the functions: * libraries.quantum_gates. * libraries.quantum_algorithms.grover_sat_solver ## Future plans Short term plans: * Research how to organize the code better. * Organize the code better. * Research how jupyter notebooks work. * Research the [4] paper for optimizing how the code choses it's number of iterations. Intermediate term plans: * Make jupyter notebooks, that function as documentation. * Implementing optimization for how the code choses it's number of iterations. More long term plans: * Investigate the quantum adders, from the paper [5]. * Research if quantum adders can be used as counters. To see how many clauses are activated, this way the number of required ancilla qubits scales logarithmically instead of linearly. Here phase kickback is provided if the right number of clauses are activated. * Research if it is useful to ignore some qubits from the counter, perhaps a phase kickback can also be provided if the number of activated clauses is greater or equal to some value. For example consider the counter literals x2 x1 x0. If x2 = True then the value of the counter is greater than or equal to 4. And also how this works for values other than powers of 2. * Investigate if this can be used to solve MAX-SAT and weighted MAX-SAT problems. * And if it all works out documenting everything to make it more comprehensive. ## References [1]: Grover, L. K. (1996, July). A fast quantum mechanical algorithm for database search. In Proceedings of the twenty-eighth annual ACM symposium on Theory of computing (pp. 212-219). [2]: Cook, S. A. (1971, May). The complexity of theorem-proving procedures. In Proceedings of the third annual ACM symposium on Theory of computing (pp. 151-158). [3]: Karp, R. M. (1972). Reducibility among combinatorial problems. In Complexity of computer computations (pp. 85-103). Springer, Boston, MA. [4]: Boyer, M., Brassard, G., Høyer, P., & Tapp, A. (1998). Tight bounds on quantum searching. Fortschritte der Physik: Progress of Physics, 46(4‐5), 493-505. [5]: Draper, T. G. (2000). Addition on a quantum computer. arXiv preprint quant-ph/0008033.


نحوه نصب


نصب پکیج whl enigma-quantum-0.2:

    pip install enigma-quantum-0.2.whl


نصب پکیج tar.gz enigma-quantum-0.2:

    pip install enigma-quantum-0.2.tar.gz