Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions cirq-ionq/cirq_ionq/ionq_native_gates.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class GPIGate(cirq.Gate):
\end{bmatrix}
$$

See [IonQ best practices](https://ionq.com/docs/getting-started-with-native-gates){:external}.
See [IonQ best practices](https://docs.ionq.com/guides/getting-started-with-native-gates){:external}.
"""

def __init__(self, *, phi):
Expand Down Expand Up @@ -97,7 +97,7 @@ def __pow__(self, power):
\end{bmatrix}
$$

See [IonQ best practices](https://ionq.com/docs/getting-started-with-native-gates){:external}.
See [IonQ best practices](https://docs.ionq.com/guides/getting-started-with-native-gates){:external}.
""",
)

Expand All @@ -115,7 +115,7 @@ class GPI2Gate(cirq.Gate):
\end{bmatrix}
$$

See [IonQ best practices](https://ionq.com/docs/getting-started-with-native-gates){:external}.
See [IonQ best practices](https://docs.ionq.com/guides/getting-started-with-native-gates){:external}.
"""

def __init__(self, *, phi):
Expand Down Expand Up @@ -174,7 +174,7 @@ def __pow__(self, power):
\end{bmatrix}
$$

See [IonQ best practices](https://ionq.com/docs/getting-started-with-native-gates){:external}.
See [IonQ best practices](https://docs.ionq.com/guides/getting-started-with-native-gates){:external}.
""",
)

Expand All @@ -194,7 +194,7 @@ class MSGate(cirq.Gate):
\end{bmatrix}
$$

See [IonQ best practices](https://ionq.com/docs/getting-started-with-native-gates){:external}.
See [IonQ best practices](https://docs.ionq.com/guides/getting-started-with-native-gates){:external}.
"""

def __init__(self, *, phi0, phi1, theta=0.25):
Expand Down Expand Up @@ -271,7 +271,7 @@ def __pow__(self, power):
\end{bmatrix}
$$

See [IonQ best practices](https://ionq.com/docs/getting-started-with-native-gates){:external}.
See [IonQ best practices](https://docs.ionq.com/guides/getting-started-with-native-gates){:external}.
""",
)

Expand All @@ -292,7 +292,7 @@ class ZZGate(cirq.Gate):
\end{bmatrix}
$$

See [IonQ best practices](https://ionq.com/docs/getting-started-with-native-gates){:external}.
See [IonQ best practices](https://docs.ionq.com/guides/getting-started-with-native-gates){:external}.
"""

def __init__(self, *, theta):
Expand Down Expand Up @@ -360,6 +360,6 @@ def __pow__(self, power):
\end{bmatrix}
$$

See [IonQ best practices](https://ionq.com/docs/getting-started-with-native-gates){:external}.
See [IonQ best practices](https://docs.ionq.com/guides/getting-started-with-native-gates){:external}.
""",
)
Loading