grove icon indicating copy to clipboard operation
grove copied to clipboard

Quantum algorithms built using pyQuil.

Results 50 grove issues
Sort by recently updated
recently updated
newest added

Hello, I saw the example of the binary search using Grover, however, I am interested in search decimal values from a database. Let's say. I want to search for '20'...

The example max cut optimization problem given at https://github.com/rigetticomputing/grove/tree/master/grove/pyqaoa gives this error when I run it: Traceback (most recent call last): File "pyquil_optimization_test.py", line 24, in for state_index in range(2**inst.n_qubits):...

This PR implements the following changes: - implements support for k-local Ising instances - fixes several bugs that occured with Ising instances that didn't have bias (h) terms for each...

When using the function ``grove.alpha.arbitrary_state.arbitrary_state(vector, qubits)``, inserting qubits that will not be used in the ``qubits`` option modifies the output program and the results. Only when ``len(qubits) =ceil(log2(len(vector)))`` (i.e., only...

Hi, with this commit I have included Quantum Circuit Learning implementation according to the paper https://arxiv.org/abs/1803.00745. Additionally, docs with simple regression and classification examples are included. Since, the execution of...

Fixed incorrect indentation introduced in eb476e22237dd45c23d731d9f3c59457ac2cfcaa

> When I run the sample code of qaoa_maxcut ![jietu20171205-230319](https://user-images.githubusercontent.com/34290205/33648844-85cd6b86-da10-11e7-807f-a4648b5c3754.jpg) > The result is ![jietu20171205-225847](https://user-images.githubusercontent.com/34290205/33648852-8ef84b36-da10-11e7-8d21-efe03dfc9bef.jpg) > which is different from the result on the website page, I mean, the order...

regression

This PR depends on PR #141 and implements the following changes: - new QAOA argument ``embedding`` which is a way of mapping the logical problem to the QPU hardware graph....

This PR adds a new example to the QAOA docs in which we explain how to use different mixer Hamiltonians in the QAOA.

While building tests for shor.py, I realized that there are a few issues with the testing infrastructure in grove. 1) All tests import the modules that they would like to...