jxc-python 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {jxc_python-0.1.2 → jxc_python-0.1.3}/PKG-INFO +1 -1
- {jxc_python-0.1.2 → jxc_python-0.1.3}/README.md +2 -2
- jxc_python-0.1.3/jxc/_libxc/__init__.py +14 -0
- jxc_python-0.1.3/jxc/_libxc/core.py +34 -0
- jxc_python-0.1.3/jxc/_libxc/flags.py +46 -0
- jxc_python-0.1.3/jxc/_libxc/functional.py +824 -0
- jxc_python-0.1.3/jxc/_libxc/libxc.so +0 -0
- jxc_python-0.1.3/jxc/_libxc/structs.py +159 -0
- jxc_python-0.1.3/jxc/_libxc/util.py +273 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/get_params.py +9 -32
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc_python.egg-info/PKG-INFO +1 -1
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc_python.egg-info/SOURCES.txt +7 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/pyproject.toml +4 -2
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/__init__.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/composite.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/__init__.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/_libxc_laplacian.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/deorbitalized_common.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_acgga.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_acggap.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_am05.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_bmk.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_ccdf.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_chachiyo.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_cs1.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_ft97.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_gapc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_gaploc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_hcth_a.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_lm.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_lyp.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_lypr.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_op_b88.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_op_g96.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_op_pbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_op_pw91.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_op_xalpha.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_optc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_p86.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_p86vwn.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_pbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_pbe_erf_gws.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_pbe_vwn.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_pbeloc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_pw91.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_q2d.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_regtpss.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_revtca.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_scan_e0.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_sg4.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_sogga11.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_tca.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_w94.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_wi.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_wl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_zpbeint.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_zvpbeint.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_c_zvpbeloc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_apbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_apbeint.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_dk.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_exp4.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_lc94.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_lgap.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_lgap_ge.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_lkt.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_llp.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_meyer.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_mpbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_ol1.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_ol2.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_pearson.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_pg.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_pw86.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_rational_p.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_tflw.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_thakkar.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_k_vt84f.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_2d_b86.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_2d_b86_mgc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_2d_b88.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_2d_pbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_airy.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ak13.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_am05.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_b86.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_b88.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_bayesian.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_beefvdw.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_bkl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_bpccac.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_c09x.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_cap.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_chachiyo.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_dk87.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ev93.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_fd_lb94.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ft97.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_g96.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_gg99.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_hcth_a.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_hjs.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_hjs_b88.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_hjs_b88_v2.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_htbs.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ityh.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ityh_optx.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ityh_pbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_kt.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_lb.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_lg93.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_lspbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_lsrpbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_lv_rpw86.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_mpbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_n12.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ncap.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ol2.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_optx.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_pbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_pbe_erf_gws.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_pbea.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_pbeint.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_pbepow.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_pbetrans.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_pw86.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_pw91.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_q1d.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_q2d.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_rge2.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_rpbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_s12.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_sfat.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_sfat_pbe.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_sg4.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_sogga11.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_ssb_sw.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_vmt.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_vmt84.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_wc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_x_wpbeh.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_xc_b97.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_xc_th1.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_xc_th2.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/gga_xc_th3.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_gga_x_cam_s12.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_gga_xc_case21.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_gga_xc_wb97.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_lda_xc_bn05.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_mgga_x_dldf.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_mgga_x_js18.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_mgga_x_m05.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_mgga_x_pjs18.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_mgga_xc_gas22.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/hyb_mgga_xc_wb97mv.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/jax_derivatives.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_1d_csc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_1d_loos.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_2d_amgb.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_2d_prm.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_chachiyo.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_chachiyo_mod.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_epc17.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_epc18.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_gk72.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_gombas.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_hl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_lp96.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_ml1.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_pk09.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_pmgb06.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_pw.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_pw_erf.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_pz.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_rc04.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_rpa.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_vwn.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_vwn_1.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_vwn_2.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_vwn_3.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_vwn_4.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_vwn_rpa.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_w20.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_c_wigner.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_k_gds08_worker.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_k_tf.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_k_zlp.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_x.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_x_1d_exponential.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_x_1d_soft.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_x_2d.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_x_erf.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_x_rel.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_x_sloc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_x_yukawa.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_xc_1d_ehwlrg.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_xc_ksdt.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_xc_teter93.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_xc_tih.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/lda_xc_zlp.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_b88.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_b94.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_bc95.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_cc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_ccalda.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_cs.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_kcis.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_kcisk.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_ltapw.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_m05.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_m06l.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_m08.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_pkzb.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_r2scan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_r2scanl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_revscan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_revtpss.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_rmggac.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_rppscan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_rregtm.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_rscan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_scan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_scanl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_tpss.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_tpssloc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_c_vsxc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_k_csk.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_k_csk_loc.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_k_gea2.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_k_gea4.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_k_lk.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_k_pc07.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_k_pgslb.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_k_rda.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_2d_js17.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_2d_prhg07.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_2d_prp10.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_br89.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_br89_explicit.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_edmgga.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_eel.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_ft98.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_gdme.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_gvt4.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_gx.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_jk.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_ktbm.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_lak.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_lta.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_m06l.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_m08.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_m11.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_m11_l.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mbeef.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mbeefvdw.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mbr.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mbrxc_bg.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mbrxh_bg.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mcml.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mggac.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mn12.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_ms.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_msb.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_msb86bl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mspbel.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_msrpbel.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mvs.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_mvsb.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_pbe_gx.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_pkzb.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_r2scan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_r2scanl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_r4scan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_regtm.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_regtpss.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_revscan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_revscanl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_revtm.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_rlda.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_rppscan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_rscan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_rtpss.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_sa_tpss.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_scan.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_scanl.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_task.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_tau_hcth.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_tb09.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_th.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_tm.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_tpss.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_vcml.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_x_vt84.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_xc_b97mv.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_xc_b98.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_xc_cc06.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_xc_lp90.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/mgga_xc_zlp.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/util.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/functionals/utils.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/helper.cpython-313-x86_64-linux-gnu.so +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/libxc_aliases.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/maple_series_overrides.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc/maple_taylor_overrides.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc_python.egg-info/dependency_links.txt +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc_python.egg-info/requires.txt +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/jxc_python.egg-info/top_level.txt +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/setup.cfg +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/setup.py +0 -0
- {jxc_python-0.1.2 → jxc_python-0.1.3}/tests/test_composite.py +0 -0
|
@@ -200,7 +200,7 @@ All commands below assume you are inside `projects/jxc/`. The repository uses
|
|
|
200
200
|
build steps with `uv run` instead of activating the virtualenv.
|
|
201
201
|
|
|
202
202
|
```bash
|
|
203
|
-
# create venv, build and install both
|
|
203
|
+
# create venv, build and install both pylibxc + jxc (default python version 3.13)
|
|
204
204
|
make install
|
|
205
205
|
|
|
206
206
|
# switch to python 3.12
|
|
@@ -217,7 +217,7 @@ make help
|
|
|
217
217
|
regenerates the helper glue, builds (or reuses) the LibXC core under
|
|
218
218
|
`.libxc-core/`, compiles the pybind11 helper against that installation, bundles
|
|
219
219
|
the Python sources, and drops a wheel into `dist/`. Use `make install` to
|
|
220
|
-
install the freshly built `
|
|
220
|
+
install the freshly built `pylibxc` and `jxc` wheels into the selected `uv`
|
|
221
221
|
environment. The first phase (`scripts/build_libxc_core.sh`) only
|
|
222
222
|
runs when `.libxc-core` is absent; subsequent builds for new Python versions
|
|
223
223
|
reuse the same C artifacts.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Lightweight LibXC bindings vendored into JXC.
|
|
3
|
+
|
|
4
|
+
We keep this package minimal to avoid circular imports:
|
|
5
|
+
|
|
6
|
+
- ``core``: ctypes-loaded LibXC shared library (bundled with the wheel)
|
|
7
|
+
|
|
8
|
+
Callers should import ``LibXCFunctional`` and ``util`` directly from
|
|
9
|
+
``jxc._libxc.functional`` and ``jxc._libxc.util``.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
from .core import core, get_core_path # noqa: F401
|
|
13
|
+
|
|
14
|
+
__all__ = ["core", "get_core_path"]
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Minimal LibXC loader used by JXC.
|
|
3
|
+
|
|
4
|
+
This module is intentionally self-contained and only looks for the
|
|
5
|
+
LibXC shared library next to this file (bundled into the jxc wheel).
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import ctypes
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
|
|
11
|
+
import numpy as np
|
|
12
|
+
|
|
13
|
+
core = None
|
|
14
|
+
__libxc_path: str | None = None
|
|
15
|
+
|
|
16
|
+
_HERE = Path(__file__).resolve().parent
|
|
17
|
+
|
|
18
|
+
for _name in ("libxc.so", "libxc.dylib"):
|
|
19
|
+
candidate = _HERE / _name
|
|
20
|
+
if candidate.is_file():
|
|
21
|
+
__libxc_path = str(candidate)
|
|
22
|
+
core = np.ctypeslib.load_library("libxc", str(_HERE))
|
|
23
|
+
break
|
|
24
|
+
|
|
25
|
+
if core is None or __libxc_path is None:
|
|
26
|
+
raise ImportError(
|
|
27
|
+
"Bundled LibXC shared library not found in jxc._libxc. "
|
|
28
|
+
"This build of jxc is incomplete; expected libxc.so next to core.py."
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def get_core_path() -> str:
|
|
33
|
+
"""Return the absolute path of the loaded LibXC shared object."""
|
|
34
|
+
return __libxc_path
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"""
|
|
2
|
+
A port of the LibXC internal flags to Python. Header defines must be physically copied.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
XC_UNPOLARIZED = 1
|
|
6
|
+
XC_POLARIZED = 2
|
|
7
|
+
|
|
8
|
+
XC_NON_RELATIVISTIC = 0
|
|
9
|
+
XC_RELATIVISTIC = 1
|
|
10
|
+
|
|
11
|
+
XC_EXCHANGE = 0
|
|
12
|
+
XC_CORRELATION = 1
|
|
13
|
+
XC_EXCHANGE_CORRELATION = 2
|
|
14
|
+
XC_KINETIC = 3
|
|
15
|
+
|
|
16
|
+
XC_FAMILY_UNKNOWN = -1
|
|
17
|
+
XC_FAMILY_LDA = 1
|
|
18
|
+
XC_FAMILY_GGA = 2
|
|
19
|
+
XC_FAMILY_MGGA = 4
|
|
20
|
+
XC_FAMILY_LCA = 8
|
|
21
|
+
XC_FAMILY_OEP = 16
|
|
22
|
+
XC_FAMILY_HYB_GGA = 32
|
|
23
|
+
XC_FAMILY_HYB_MGGA = 64
|
|
24
|
+
XC_FAMILY_HYB_LDA = 128
|
|
25
|
+
|
|
26
|
+
XC_FLAGS_HAVE_EXC = (1 << 0) # = 1
|
|
27
|
+
XC_FLAGS_HAVE_VXC = (1 << 1) # = 2
|
|
28
|
+
XC_FLAGS_HAVE_FXC = (1 << 2) # = 4
|
|
29
|
+
XC_FLAGS_HAVE_KXC = (1 << 3) # = 8
|
|
30
|
+
XC_FLAGS_HAVE_LXC = (1 << 4) # = 16
|
|
31
|
+
XC_FLAGS_HAVE_ALL = 31 # The most common case
|
|
32
|
+
XC_FLAGS_1D = (1 << 5) # = 32
|
|
33
|
+
XC_FLAGS_2D = (1 << 6) # = 64
|
|
34
|
+
XC_FLAGS_3D = (1 << 7) # = 128
|
|
35
|
+
XC_FLAGS_HYB_CAM = (1 << 8) # = 256
|
|
36
|
+
XC_FLAGS_HYB_CAMY = (1 << 9) # = 512
|
|
37
|
+
XC_FLAGS_VV10 = (1 << 10) # 1024
|
|
38
|
+
XC_FLAGS_HYB_LC = (1 << 11) # 2048
|
|
39
|
+
XC_FLAGS_HYB_LCY = (1 << 12) # 4096
|
|
40
|
+
XC_FLAGS_STABLE = (1 << 13) # 8192
|
|
41
|
+
XC_FLAGS_DEVELOPMENT = (1 << 14) # 16384
|
|
42
|
+
XC_FLAGS_NEEDS_LAPLACIAN = (1 << 15) # 32768
|
|
43
|
+
XC_FLAGS_NEEDS_TAU = (1 << 16) # 65536
|
|
44
|
+
XC_FLAGS_ENFORCE_FHC = (1 << 17) # 131072
|
|
45
|
+
|
|
46
|
+
XC_MAX_REFERENCES = 5
|