Loading include/dca/io/json/details/convert.hpp +8 −0 Original line number Diff line number Diff line Loading @@ -187,6 +187,14 @@ struct Convert<std::vector<T>> { } }; // Clang requires this forward declaration. template <class T1, class T2> std::ostream& operator<<(std::ostream& stream, const std::pair<T1, T2>& p); template <class T> std::ostream& operator<<(std::ostream& stream, const std::vector<T>& vec); template <class T, std::size_t n> std::ostream& operator<<(std::ostream& stream, const std::array<T, n>& arr); template <class T1, class T2> std::ostream& operator<<(std::ostream& stream, const std::pair<T1, T2>& p) { return stream << '(' << p.first << ", " << p.second << ')'; Loading src/phys/dca_step/cluster_solver/ctint/CMakeLists.txt +1 −1 Original line number Diff line number Diff line Loading @@ -16,7 +16,7 @@ add_library(ctint ${CTINT_CUDA_CPP_FILES} ) target_link_libraries(ctint PUBLIC time_and_frequency_domains) target_link_libraries(ctint PUBLIC time_and_frequency_domains dca_hdf5 json) if (DCA_HAVE_CUDA) target_compile_definitions(ctint PUBLIC "-DDCA_HAVE_CUDA") Loading test/unit/phys/dca_step/cluster_solver/ctint/structs/CMakeLists.txt +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ dca_add_gtest(solver_configuration_test FAST GTEST_MAIN INCLUDE_DIRS ${TEST_INCLUDES} LIBS random;ctint;time_and_frequency_domains;function LIBS random;ctint;time_and_frequency_domains;function;json ) dca_add_gtest(read_write_ctint_config_test Loading Loading
include/dca/io/json/details/convert.hpp +8 −0 Original line number Diff line number Diff line Loading @@ -187,6 +187,14 @@ struct Convert<std::vector<T>> { } }; // Clang requires this forward declaration. template <class T1, class T2> std::ostream& operator<<(std::ostream& stream, const std::pair<T1, T2>& p); template <class T> std::ostream& operator<<(std::ostream& stream, const std::vector<T>& vec); template <class T, std::size_t n> std::ostream& operator<<(std::ostream& stream, const std::array<T, n>& arr); template <class T1, class T2> std::ostream& operator<<(std::ostream& stream, const std::pair<T1, T2>& p) { return stream << '(' << p.first << ", " << p.second << ')'; Loading
src/phys/dca_step/cluster_solver/ctint/CMakeLists.txt +1 −1 Original line number Diff line number Diff line Loading @@ -16,7 +16,7 @@ add_library(ctint ${CTINT_CUDA_CPP_FILES} ) target_link_libraries(ctint PUBLIC time_and_frequency_domains) target_link_libraries(ctint PUBLIC time_and_frequency_domains dca_hdf5 json) if (DCA_HAVE_CUDA) target_compile_definitions(ctint PUBLIC "-DDCA_HAVE_CUDA") Loading
test/unit/phys/dca_step/cluster_solver/ctint/structs/CMakeLists.txt +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ dca_add_gtest(solver_configuration_test FAST GTEST_MAIN INCLUDE_DIRS ${TEST_INCLUDES} LIBS random;ctint;time_and_frequency_domains;function LIBS random;ctint;time_and_frequency_domains;function;json ) dca_add_gtest(read_write_ctint_config_test Loading