@@ -149,24 +149,24 @@ NB_MODULE(MQT_QMAP_MODULE_NAME, m) {
149149 " Class representing the results of the Clifford synthesis techniques." )
150150 .def (nb::init<>())
151151 .def_prop_ro (" gates" , &cs::Results::getGates,
152- " Returns the number of gates in the circuit." )
152+ " The number of gates in the circuit." )
153153 .def_prop_ro (" single_qubit_gates" , &cs::Results::getSingleQubitGates,
154- " Returns the number of single-qubit gates in the "
154+ " The number of single-qubit gates in the "
155155 " synthesized circuit." )
156156 .def_prop_ro (" two_qubit_gates" , &cs::Results::getTwoQubitGates,
157- " Returns the number of two-qubit gates in the "
157+ " The number of two-qubit gates in the "
158158 " synthesized circuit." )
159159 .def_prop_ro (" depth" , &cs::Results::getDepth,
160- " Returns the depth of the synthesized circuit." )
160+ " The depth of the synthesized circuit." )
161161 .def_prop_ro (" runtime" , &cs::Results::getRuntime,
162- " Returns the runtime of the synthesis in seconds." )
162+ " The runtime of the synthesis in seconds." )
163163 .def_prop_ro (" solver_calls" , &cs::Results::getSolverCalls,
164- " Returns the number of calls to the SAT solver." )
164+ " The number of calls to the SAT solver." )
165165 .def_prop_ro (" circuit" , &cs::Results::getResultCircuit,
166- " Returns the synthesized circuit as a qasm string." )
167- .def_prop_ro (" tableau " , &cs::Results::getResultTableau,
168- " Returns a string representation of the "
169- " synthesized circuit's tableau." )
166+ " The synthesized circuit as a qasm string." )
167+ .def_prop_ro (
168+ " tableau " , &cs::Results::getResultTableau,
169+ " A string representation of the synthesized circuit's tableau." )
170170 .def (" sat" , &cs::Results::sat,
171171 " Returns `True` if the synthesis was successful." )
172172 .def (" unsat" , &cs::Results::unsat,
@@ -212,12 +212,12 @@ NB_MODULE(MQT_QMAP_MODULE_NAME, m) {
212212 " Runs the synthesis with the given configuration." );
213213 synthesizer.def_prop_ro (" results" , &cs::CliffordSynthesizer::getResults,
214214 nb::rv_policy::reference_internal,
215- " Returns the results of the synthesis." );
215+ " The results of the synthesis." );
216216 synthesizer.def_prop_ro (
217217 " result_circuit" ,
218218 [](cs::CliffordSynthesizer& self) {
219219 return qasm3::Importer::imports (self.getResults ().getResultCircuit ());
220220 },
221- " Returns the synthesized circuit as a "
222- " :class:`~mqt.core.ir.QuantumComputation` object." );
221+ " The synthesized circuit as a :class:`~mqt.core.ir.QuantumComputation` "
222+ " object." );
223223}
0 commit comments