From 23207f7882f6bccdac741076404cdb2d92936b0a Mon Sep 17 00:00:00 2001 From: Riley Murray Date: Fri, 2 Feb 2024 21:56:39 -0500 Subject: [PATCH] remove unnecessary comments --- pygsti/forwardsims/torchfwdsim.py | 36 ------------------------------- 1 file changed, 36 deletions(-) diff --git a/pygsti/forwardsims/torchfwdsim.py b/pygsti/forwardsims/torchfwdsim.py index ce39708cb..27bb4424d 100644 --- a/pygsti/forwardsims/torchfwdsim.py +++ b/pygsti/forwardsims/torchfwdsim.py @@ -61,42 +61,6 @@ def __init__(self, spc: SeparatePOVMCircuit): self.prep_label = spc.circuit_without_povm[0] self.op_labels = spc.circuit_without_povm[1:] self.povm_label = spc.povm_label - - # prep = model.circuit_layer_operator(self.prep_label, typ='prep') - # povm = model.circuit_layer_operator(self.povm_label, 'povm') - # self.input_dim = prep.dim - # self.output_dim = len(povm) - - # self.prep_type = type(prep) - """ ^ - - - - - - """ - # self.op_types = OrderedDict() - # for ol in self.op_labels: - # self.op_types[ol] = type(model.circuit_layer_operator(ol, 'op')) - """ ^ For reasons that I don't understand, this is OFTEN an empty list - in the first step of iterative GST. When it's nonempty, it contains ... - - - - - - - - """ - # self.povm_type = type(povm) - """ - - - - - - keyed by effectlabels and ConjugatedStatePOVMEffect-valued - """ return