Skip to content

Commit

Permalink
fix gcp docs, bump qcng to 19
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed May 12, 2021
1 parent 8dcf46e commit 97583a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/sphinxman/source/gcp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,20 +123,20 @@ A few practical examples:

If only BSSE/basis set corrections (rather than total energies) are of
interest, the ``gcp`` program can be run independently of the scf
through the python function :py:func:`~qcdb.interface_gcp.run_gcp`. (This function
through the python function :py:func:`~qcdb.Molecule.run_gcp`. (This function
is the same |PSIfour|/``gcp`` interface that is called during an scf job.)
This route is much faster than running a HF or DFT energy. ::

molecule nene {
Ne
Ne 1 2.0
}

nene.update_geometry()

>>> E, G = nene.run_gcp('hf3c')

>>> E, G = nene.run_gcp(func='HF3c', verbose=True)

.. autofunction:: qcdb.interface_gcp.run_gcp
.. autofunction:: qcdb.Molecule.run_gcp

4 changes: 2 additions & 2 deletions external/upstream/qcengine/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
if(NOT (${CMAKE_DISABLE_FIND_PACKAGE_qcengine}))
include(FindPythonModule)
find_python_module(qcengine ATLEAST 0.18.0 QUIET)
find_python_module(qcengine ATLEAST 0.19.0 QUIET)
endif()

if(${qcengine_FOUND})
Expand All @@ -21,7 +21,7 @@ else()
ExternalProject_Add(qcengine_external
DEPENDS qcelemental_external
BUILD_ALWAYS 1
URL https://github.com/MolSSI/QCEngine/archive/v0.18.0.tar.gz
URL https://github.com/MolSSI/QCEngine/archive/v0.19.0.tar.gz
CONFIGURE_COMMAND ""
UPDATE_COMMAND ""
BUILD_COMMAND ${Python_EXECUTABLE} setup.py build
Expand Down

0 comments on commit 97583a2

Please sign in to comment.