-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84b762e
commit 4204fdc
Showing
6 changed files
with
36 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "cmake", "pyscf", "numpy", "cffi"] | ||
requires = ["setuptools", "wheel", "cmake", "pyscf", "numpy"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
# | ||
# Authors: Qiming Sun <[email protected]> | ||
# Susi Lehtola <[email protected]> | ||
# Dayou Zhang <[email protected]> | ||
# This file is adapted from `dft/libxc.py` of the PySCF core module | ||
# commit 25eaa9572977b903de24d5c11ad345cecd744728 | ||
|
||
|
@@ -876,7 +877,7 @@ def _eval_xc(xc_code, rho, spin=0, deriv=1, omega=None): | |
if omega is not None: | ||
raise NotImplementedError('use register_custom_functional_() to set omega') | ||
|
||
if _needs_laplacian(xc.nfunc, xc.xc_arr): | ||
if xc.needs_laplacian: | ||
raise NotImplementedError('laplacian in meta-GGA method') | ||
|
||
nvar, xlen = xc_deriv._XC_NVAR[xctype, spin] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
* Authors: Qiming Sun <[email protected]> | ||
* Susi Lehtola <[email protected]> | ||
* Xing Zhang <[email protected]> | ||
* Dayou Zhang <[email protected]> | ||
* | ||
* libxc from | ||
* http://www.tddft.org/programs/octopus/wiki/index.php/Libxc:manual | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters