File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -755,10 +755,10 @@ dedupe : bool
755
755
" int: The number of PauliString terms in PauliOp" )
756
756
.def_prop_ro (
757
757
" coeffs" , [](fp::PauliOp<float_type> const &self) { return self.coeffs ; },
758
- " List[complex]: Ordered list of coefficients corresponding to Pauli strings" )
758
+ " List[complex]: The list of coefficients corresponding to Pauli strings" )
759
759
.def_prop_ro (
760
760
" pauli_strings" , [](fp::PauliOp<float_type> const &self) { return self.pauli_strings ; },
761
- " List[PauliString]: Ordered list of PauliString objects in PauliOp" )
761
+ " List[PauliString]: The list of PauliString objects corresponding to coefficients in PauliOp" )
762
762
.def_prop_ro (
763
763
" pauli_strings_as_str" ,
764
764
[](fp::PauliOp<float_type> const &self) {
@@ -768,7 +768,7 @@ dedupe : bool
768
768
[](fp::PauliString const &ps) { return fmt::format (" {}" , ps); });
769
769
return strings;
770
770
},
771
- " List[str]: Ordered list of Pauli Strings representations from PauliOp" )
771
+ " List[str]: The list of PauliString representations corresponding to coefficients in PauliOp" )
772
772
773
773
// Methods
774
774
.def (
You can’t perform that action at this time.
0 commit comments