We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cd8b96 commit 8c7db22Copy full SHA for 8c7db22
source/user/using.md
@@ -176,10 +176,10 @@ Intermediate quantities are **not** saved in the class.
176
After calling the `kernel()` or `run()` method, results will be generated and
177
saved as attributes of the object. For example,
178
```python
179
-from pyscf import gto, scf, ccsd
+from pyscf import gto, scf, cc
180
mol = gto.M(atom='H 0 0 0; H 0 0 1.1', basis='ccpvtz')
181
mf = scf.RHF(mol).run()
182
-mycc = ccsd.CCSD(mf).run()
+mycc = cc.CCSD(mf).run()
183
print(mycc.e_tot)
184
print(mycc.e_corr)
185
print(mycc.t1.shape)
0 commit comments