use crate::gates::Gate;
use crate::stabilizer::PauliOp;
pub struct Z
{
}
impl Z
{
pub fn new() -> Self
{
Z { }
}
}
impl crate::gates::Gate for Z
{
fn cost(&self) -> f64
{
crate::gates::U1::cost()
}
fn description(&self) -> &str
{
"Z"
}
fn nr_affected_bits(&self) -> usize
{
1
}
fn matrix(&self) -> crate::cmatrix::CMatrix
{
let z = crate::cmatrix::COMPLEX_ZERO;
let o = crate::cmatrix::COMPLEX_ONE;
array![[o, z], [z, -o]]
}
fn apply_slice(&self, mut state: crate::cmatrix::CVecSliceMut)
{
assert!(state.len() % 2 == 0, "Number of rows is not even.");
let n = state.len() / 2;
state.slice_mut(s![n..]).mapv_inplace(|c| -c);
}
fn apply_mat_slice(&self, mut state: crate::cmatrix::CMatSliceMut)
{
assert!(state.rows() % 2 == 0, "Number of rows is not even.");
let n = state.rows() / 2;
state.slice_mut(s![n.., ..]).mapv_inplace(|c| -c);
}
fn is_stabilizer(&self) -> bool
{
true
}
fn conjugate(&self, ops: &mut [PauliOp]) -> crate::error::Result<bool>
{
self.check_nr_bits(ops.len())?;
Ok(ops[0] == PauliOp::X || ops[0] == PauliOp::Y)
}
}
impl crate::export::OpenQasm for Z
{
fn open_qasm(&self, bit_names: &[String], bits: &[usize])
-> crate::error::Result<String>
{
Ok(format!("z {}", bit_names[bits[0]]))
}
}
impl crate::export::CQasm for Z
{
fn c_qasm(&self, bit_names: &[String], bits: &[usize])
-> crate::error::Result<String>
{
Ok(format!("z {}", bit_names[bits[0]]))
}
}
impl crate::export::Latex for Z
{
fn latex(&self, bits: &[usize], state: &mut crate::export::LatexExportState)
-> crate::error::Result<()>
{
self.check_nr_bits(bits.len())?;
let symbol = if state.is_controlled() { r"\control \qw" } else { r"\gate{Z}" };
state.set_field(bits[0], String::from(symbol))
}
}
#[cfg(test)]
mod tests
{
use super::Z;
use crate::gates::{gate_test, Gate};
use crate::export::{Latex, LatexExportState, OpenQasm, CQasm};
use crate::stabilizer::PauliOp;
#[test]
fn test_description()
{
let gate = Z::new();
assert_eq!(gate.description(), "Z");
}
#[test]
fn test_cost()
{
let gate = Z::new();
assert_eq!(gate.cost(), 7.0);
}
#[test]
fn test_matrix()
{
let gate = Z::new();
let z = crate::cmatrix::COMPLEX_ZERO;
let o = crate::cmatrix::COMPLEX_ONE;
assert_complex_matrix_eq!(gate.matrix(), array![[o, z], [z, -o]]);
}
#[test]
fn test_apply()
{
let z = crate::cmatrix::COMPLEX_ZERO;
let o = crate::cmatrix::COMPLEX_ONE;
let x = crate::cmatrix::COMPLEX_HSQRT2;
let mut state = array![[o, z, x, x], [z, o, x, -x]];
let result = array![[o, z, x, x], [ z, -o, -x, x]];
gate_test(Z::new(), &mut state, &result);
}
#[test]
fn test_open_qasm()
{
let bit_names = [String::from("qb")];
let qasm = Z::new().open_qasm(&bit_names, &[0]);
assert_eq!(qasm, Ok(String::from("z qb")));
}
#[test]
fn test_c_qasm()
{
let bit_names = [String::from("qb")];
let qasm = Z::new().c_qasm(&bit_names, &[0]);
assert_eq!(qasm, Ok(String::from("z qb")));
}
#[test]
fn test_latex()
{
let gate = Z::new();
let mut state = LatexExportState::new(1, 0);
assert_eq!(gate.latex(&[0], &mut state), Ok(()));
assert_eq!(state.code(),
r#"\Qcircuit @C=1em @R=.7em {
\lstick{\ket{0}} & \gate{Z} & \qw \\
}
"#);
}
#[test]
fn test_conjugate()
{
let mut op = [PauliOp::I];
assert_eq!(Z::new().conjugate(&mut op), Ok(false));
assert_eq!(op, [PauliOp::I]);
let mut op = [PauliOp::Z];
assert_eq!(Z::new().conjugate(&mut op), Ok(false));
assert_eq!(op, [PauliOp::Z]);
let mut op = [PauliOp::X];
assert_eq!(Z::new().conjugate(&mut op), Ok(true));
assert_eq!(op, [PauliOp::X]);
let mut op = [PauliOp::Y];
assert_eq!(Z::new().conjugate(&mut op), Ok(true));
assert_eq!(op, [PauliOp::Y]);
}
}