Skip to content

Commit e9828ca

Browse files
committed
Renaming in docs and example
1 parent 26ef3fa commit e9828ca

4 files changed

+8
-8
lines changed

docs/Simulated_calibration.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ to wrap the blackbox by defining the target states and the ``opt_map``.
124124
exp.set_opt_gates_seq(seqs)
125125
126126
# Simulating the gates #
127-
U_dict = exp.get_gates()
127+
U_dict = exp.compute_propagators()
128128
129129
# Running the RB sequences and read-out the results #
130130
pops = exp.evaluate(seqs)

docs/two_qubits.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -622,13 +622,13 @@ rotation on one qubit and the identity.
622622
623623
exp.set_opt_gates(['RX90p:Id', 'Id:Id'])
624624
625-
The actual numerical simulation is done by calling ``exp.get_gates()``.
625+
The actual numerical simulation is done by calling ``exp.compute_propagators()``.
626626
This is the most resource intensive part as it involves solving the
627627
equations of motion for the system.
628628

629629
.. code-block:: python
630630
631-
unitaries = exp.get_gates()
631+
unitaries = exp.compute_propagators()
632632
633633
634634
.. code-block:: python
@@ -695,7 +695,7 @@ and plot system dynamics.
695695
If true, return a matplotlib figure instead of saving.
696696
"""
697697
model = exp.pmap.model
698-
dUs = exp.dUs
698+
dUs = exp.partial_propagators
699699
psi_t = psi_init.numpy()
700700
pop_t = exp.populations(psi_t, model.lindbladian)
701701
for gate in seq:

examples/Simulated_calibration.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
" exp.set_opt_gates_seq(seqs)\n",
137137
"\n",
138138
" # Simulating the gates #\n",
139-
" U_dict = exp.get_gates()\n",
139+
" U_dict = exp.compute_propagators()\n",
140140
"\n",
141141
" # Running the RB sequences and read-out the results #\n",
142142
" pops = exp.evaluate(seqs)\n",

examples/two_qubits.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@
935935
"cell_type": "markdown",
936936
"metadata": {},
937937
"source": [
938-
"The actual numerical simulation is done by calling `exp.get_gates()`. \n",
938+
"The actual numerical simulation is done by calling `exp.compute_propagators()`. \n",
939939
"This is the most resource intensive part as it involves solving the equations of motion for the system."
940940
]
941941
},
@@ -945,7 +945,7 @@
945945
"metadata": {},
946946
"outputs": [],
947947
"source": [
948-
"unitaries = exp.get_gates()"
948+
"unitaries = exp.compute_propagators()"
949949
]
950950
},
951951
{
@@ -1160,7 +1160,7 @@
11601160
" If true, return a matplotlib figure instead of saving.\n",
11611161
" \"\"\"\n",
11621162
" model = exp.pmap.model\n",
1163-
" dUs = exp.dUs\n",
1163+
" dUs = exp.partial_propagators\n",
11641164
" psi_t = psi_init.numpy()\n",
11651165
" pop_t = exp.populations(psi_t, model.lindbladian)\n",
11661166
" for gate in seq:\n",

0 commit comments

Comments
 (0)