From fa007a0dac0f9f72ef575eb4235265c235974583 Mon Sep 17 00:00:00 2001 From: Luciano Bello Date: Mon, 13 Jan 2020 16:48:31 -0300 Subject: [PATCH] documentation --- qiskit/transpiler/pass_manager_config.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/qiskit/transpiler/pass_manager_config.py b/qiskit/transpiler/pass_manager_config.py index b6ac6d184800..ff4f6b3a2a00 100644 --- a/qiskit/transpiler/pass_manager_config.py +++ b/qiskit/transpiler/pass_manager_config.py @@ -26,9 +26,12 @@ class PassManagerConfig(BaseModel): full description of the model, please check ``PassManagerConfigSchema``. Attributes: - optimization_level (int): a non-negative integer indicating the - optimization level. 0 means no transformation on the circuit. Higher - levels may produce more optimized circuits, but may take longer. + initial_layout (Layout): Initial position of virtual qubits on physical qubits. + basis_gates (list): List of basis gate names to unroll to. + coupling_map (CouplingMap): Directed graph represented a coupling map. + backend_properties (BackendProperties): Properties returned by a backend, including + information on gate errors, readout errors, qubit coherence times, etc. + seed_transpiler (int): Sets random seed for the stochastic parts of the transpiler. """ def __init__(self,