diff --git a/src/gates/PostSelectionGates.js b/src/gates/PostSelectionGates.js index 7ca534d0..e8061753 100644 --- a/src/gates/PostSelectionGates.js +++ b/src/gates/PostSelectionGates.js @@ -56,7 +56,7 @@ PostSelectionGates.PostSelectOn = new GateBuilder(). /** @type {!Gate} */ PostSelectionGates.PostSelectAntiX = new GateBuilder(). setSerializedId("|+⟩⟨+|"). // The +/- drawing convention was switched, but the serialized id must stay the same. - setSymbol("|⊖⟩⟨⊖|"). + setSymbol("|+⟩⟨+|"). setTitle("Postselect X-Off"). setBlurb("Keeps ON+OFF states, discards/retries ON-OFF states."). setDrawer(POST_SELECT_DRAWER). @@ -67,7 +67,7 @@ PostSelectionGates.PostSelectAntiX = new GateBuilder(). PostSelectionGates.PostSelectX = new GateBuilder(). setAlternate(PostSelectionGates.PostSelectAntiX). setSerializedId("|-⟩⟨-|"). // The +/- drawing convention was switched, but the serialized id must stay the same. - setSymbol("|⊕⟩⟨⊕|"). + setSymbol("|-⟩⟨-|"). setTitle("Postselect X-On"). setBlurb("Keeps ON-OFF states, discards/retries ON+OFF states."). setDrawer(POST_SELECT_DRAWER). @@ -77,7 +77,7 @@ PostSelectionGates.PostSelectX = new GateBuilder(). /** @type {!Gate} */ PostSelectionGates.PostSelectAntiY = new GateBuilder(). setSerializedId("|X⟩⟨X|"). // The cross/slash convention was switched, but the serialized id must stay the same. - setSymbol("|⊘⟩⟨⊘|"). + setSymbol("|i⟩⟨i|"). setTitle("Postselect Y-Off"). setBlurb("Keeps ON+iOFF states, discards ON-iOFF states."). setDrawer(POST_SELECT_DRAWER). @@ -88,7 +88,7 @@ PostSelectionGates.PostSelectAntiY = new GateBuilder(). PostSelectionGates.PostSelectY = new GateBuilder(). setAlternate(PostSelectionGates.PostSelectAntiY). setSerializedId("|/⟩⟨/|"). // The cross/slash convention was switched, but the serialized id must stay the same. - setSymbol("|⊗⟩⟨⊗|"). + setSymbol("|-i⟩⟨-i|"). setTitle("Postselect Y-On"). setBlurb("Keeps ON-iOFF states, discards/retries ON+iOFF states."). setDrawer(POST_SELECT_DRAWER).