Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make two-body Jastrow work in 2D #4289

Merged
merged 16 commits into from
Nov 2, 2022
Prev Previous commit
Next Next commit
move 2d jastrow test
  • Loading branch information
Paul-St-Young committed Oct 24, 2022
commit 1479219ad5991facaf941abfacac8e91402544d0
7 changes: 3 additions & 4 deletions src/QMCWaveFunctions/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ set(JASTROW_SRC
test_J1OrbitalSoA.cpp
test_J1Spin.cpp
test_J2_bspline.cpp
test_J2_derivatives.cpp)
test_J2_derivatives.cpp
test_2d_jastrow.cpp)
set(DETERMINANT_SRC
FakeSPO.cpp
test_DiracDeterminant.cpp
Expand All @@ -109,8 +110,6 @@ set(DETERMINANT_SRC
test_DiracMatrix.cpp
test_ci_configuration.cpp
test_multi_slater_determinant.cpp)
set(NEW_SRC
test_2d_jastrow.cpp)

# @TODO: Remove when rotations work for complex stuff
if(NOT QMC_COMPLEX)
Expand All @@ -137,7 +136,7 @@ if(ENABLE_OFFLOAD)
set(DETERMINANT_SRC ${DETERMINANT_SRC} test_DiracMatrixComputeOMPTarget.cpp)
endif(ENABLE_OFFLOAD)

foreach(CATEGORY common trialwf sposet jastrow determinant new)
foreach(CATEGORY common trialwf sposet jastrow determinant)
set(UTEST_EXE test_${SRC_DIR}_${CATEGORY})
set(UTEST_NAME deterministic-unit_${UTEST_EXE})
string(TOUPPER "${CATEGORY}_SRC" SOURCE_FILE_VAR_NAME)
Expand Down