(self)
| 59 | self.circuit.append(self.starting_hamiltonian_evolution_circuit(beta_store[i])) |
| 60 | |
| 61 | def simulate(self): |
| 62 | #print(self.circuit) |
| 63 | sim = cirq.Simulator() |
| 64 | waveform = sim.simulate(self.circuit) |
| 65 | return waveform |
| 66 | |
| 67 | |
| 68 | def expectation(self,waveform): |