loom.cliffordsim.invoker

Copyright 2024 Entropica Labs Pte Ltd

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

class loom.cliffordsim.invoker.Invoker(input_tableau, pauli_frames_forward, pauli_frames_backward, data_store, registry)[source]

Bases: object

The main role of the Invoker is to handle the interactions between an input Moment, the Tableau, PauliFrames and DataStore.

transform_pf(input_moment)[source]

Transform the pauli frames according to the input moment. The data_store is also passed to the moment’s transform_pf method to record any potential output pauli frame state.

Return type:

bool

transform_pf_back(input_moment)[source]

Transform the pauli frames backwards according to the input moment. The data_store is also passed to the moment’s transform_pf_back method to record any potential output pauli frame state.

Return type:

bool

transform_tab(input_moment)[source]

Transform the input_tableau according to the input moment. The data_store and registry are also passed to the moment’s transform_tab method to record any potential output measurement and allow for classical control.

Return type:

bool