Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
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
4 changes: 2 additions & 2 deletions src/Simulation/Native/src/simulator/capi_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ void CZ(unsigned sim_id, unsigned c, unsigned q)

void Ry(unsigned sim_id, double phi, unsigned q)
{
R(sim_id,2,phi,q);
R(sim_id,3,phi,q);
}

void CRz(unsigned sim_id, double phi, unsigned c, unsigned q)
{
MCR(sim_id,3,phi,1,&c,q);
MCR(sim_id,2,phi,1,&c,q);
}

void CRx(unsigned sim_id, double phi, unsigned c, unsigned q)
Expand Down