MolSSI Integral Reference Project
test_integral.hpp
Go to the documentation of this file.
1 /*! \file
2  *
3  * \brief Functions related to testing four-center integrals
4  */
5 
6 #pragma once
7 
8 #include <mirp/typedefs.h>
9 #include <string>
10 
12 
13 namespace mirp {
14 
15 
16 /************************************************
17  * Testing Single Integrals
18  ************************************************/
19 
20 /*! \brief Creates a test of single cartesian integrals
21  *
22  * Any existing output file (given by \p output_filepath) will be overwritten.
23  *
24  * \throw std::runtime_error if there is a problem opening the file or there
25  * there is a problem reading or writing the data
26  *
27  * \throw std::runtime_error if the working precision is not sufficient for
28  * the specified number of digits
29  *
30  * \tparam N Number of centers the integral needs
31  * \param [in] input_filepath The input file to use for integral parameters
32  * \param [in] output_filepath The output file to write the computed integrals to
33  * \param [in] working_prec Internal working precision to use
34  * \param [in] ndigits Number of digits to print
35  * \param [in] header Header information to add to the file
36  * (appended to the input file header)
37  * \param [in] cb Function that computes single cartesian integrals
38  */
39 template<int N>
40 void integral_single_create_test(const std::string & input_filepath,
41  const std::string & output_filepath,
42  slong working_prec, long ndigits,
43  const std::string & header,
44  typename callback_helper<N>::cb_single_str_type cb);
45 
46 
47 extern template void
49  const std::string &, const std::string &,
50  slong, long, const std::string &,
52 
53 
54 /*! \brief Runs a test of single cartesian integrals using interval math
55  *
56  * \throw std::runtime_error if there is a problem opening the file or there
57  * there is a problem reading or writing the data
58  *
59  * \tparam N Number of centers the integral needs
60  * \param [in] filepath Path to the file with the reference data
61  * \param [in] working_prec Internal working precision to use
62  * \param [in] cb Function that computes single cartesian integrals
63  * \return Number of failed tests
64  */
65 template<int N>
66 long integral_single_verify_test(const std::string & filepath,
67  slong working_prec,
68  typename callback_helper<N>::cb_single_str_type cb);
69 
70 extern template long
72  const std::string &, slong,
74 
75 
76 /*! \brief Test single cartesian integrals in exact double precision
77  *
78  * The integrals are tested to be exactly equal to the reference data
79  * or to integral computed with very large accuracy.
80  *
81  * \tparam N Number of centers the integral needs
82  * \param [in] filepath Path to the file with the reference data
83  * \param [in] cb Function that computes single cartesian integrals
84  * in exact double precision
85  * \param [in] cb_arb Function that computes single cartesian integrals
86  * using interval arithmetic
87  * \return Number of failed tests
88  */
89 template<int N>
90 long integral_single_verify_test_exact(const std::string & filepath,
91  typename callback_helper<N>::cb_single_exact_type cb,
92  typename callback_helper<N>::cb_single_type cb_arb);
93 
94 extern template long
96  const std::string &,
99 
100 
101 /************************************************
102  * Testing Contracted Integrals
103  ************************************************/
104 
105 /*! \brief Creates a test of contracted integrals
106  *
107  * Any existing output file (given by \p output_filepath) will be overwritten.
108  *
109  * \throw std::runtime_error if there is a problem opening the file or there
110  * there is a problem reading or writing the data
111  *
112  * \throw std::runtime_error if the working precision is not sufficient for
113  * the specified number of digits
114  *
115  * \tparam N Number of centers the integral needs
116  * \param [in] input_filepath The input file to use for integral parameters
117  * \param [in] output_filepath The output file to write the computed integrals to
118  * \param [in] working_prec Internal working precision to use
119  * \param [in] ndigits Number of digits to print
120  * \param [in] header Header information to add to the file
121  * (appended to the input file header)
122  * \param [in] cb Function that computes contracted integrals
123  */
124 template<int N>
125 void integral_create_test(const std::string & input_filepath,
126  const std::string & output_filepath,
127  slong working_prec, long ndigits,
128  const std::string & header,
129  typename callback_helper<N>::cb_str_type cb);
130 
131 extern template void
132 integral_create_test<4>(const std::string &,
133  const std::string &,
134  slong, long,
135  const std::string &,
137 
138 /*! \brief Runs a test of single cartesian integrals
139  *
140  * \throw std::runtime_error if there is a problem opening the file or there
141  * there is a problem reading or writing the data
142  *
143  * \tparam N Number of centers the integral needs
144  * \param [in] filepath Path to the file with the reference data
145  * \param [in] working_prec Internal working precision to use
146  * \param [in] cb Function that computes contracted integrals
147  * \return Number of failed tests
148  */
149 template<int N>
150 long integral_verify_test(const std::string & filepath,
151  slong working_prec,
152  typename callback_helper<N>::cb_str_type cb);
153 
154 extern template long
155 integral_verify_test<4>(const std::string &, slong,
157 
158 
159 /*! \brief Test contracted integrals in exact double precision
160  *
161  * The integrals are tested to be exactly equal to the reference data
162  * or to integral computed with very large accuracy.
163  *
164  * \tparam N Number of centers the integral needs
165  * \param [in] filepath Path to the file with the reference data
166  * \param [in] cb Function that computes contracted integrals
167  * in exact double precision
168  * \param [in] cb_arb Function that computes contracted integrals
169  * using interval arithmetic
170  * \return Number of failed tests
171  */
172 template<int N>
173 long integral_verify_test_exact(const std::string & filepath,
174  typename callback_helper<N>::cb_exact_type cb,
175  typename callback_helper<N>::cb_type cb_arb);
176 
177 extern template long
178 integral_verify_test_exact<4>(const std::string &,
181 
182 
183 } // close namespace mirp
184 
cb_integral4_single_exact cb_single_exact_type
Definition: callback_helper4.hpp:23
template long integral_verify_test_exact< 4 >(const std::string &, callback_helper< 4 >::cb_exact_type, callback_helper< 4 >::cb_type)
Aggregate header for callback helpers.
cb_integral4 cb_type
Definition: callback_helper4.hpp:17
cb_integral4_exact cb_exact_type
Definition: callback_helper4.hpp:19
void integral_create_test(const std::string &input_filepath, const std::string &output_filepath, slong working_prec, long ndigits, const std::string &header, typename callback_helper< N >::cb_str_type cb)
Creates a test of contracted integrals.
Definition: test_integral.cpp:32
long integral_single_verify_test(const std::string &filepath, slong working_prec, typename callback_helper< N >::cb_single_str_type cb)
Runs a test of single cartesian integrals using interval math.
Definition: test_integral_single.cpp:72
long integral_verify_test_exact(const std::string &filepath, typename callback_helper< N >::cb_exact_type cb, typename callback_helper< N >::cb_type cb_arb)
Test contracted integrals in exact double precision.
Definition: test_integral.cpp:170
long integral_single_verify_test_exact(const std::string &filepath, typename callback_helper< N >::cb_single_exact_type cb, typename callback_helper< N >::cb_single_type cb_arb)
Test single cartesian integrals in exact double precision.
Definition: test_integral_single.cpp:128
template long integral_single_verify_test_exact< 4 >(const std::string &, callback_helper< 4 >::cb_single_exact_type, callback_helper< 4 >::cb_single_type)
cb_integral4_single cb_single_type
Definition: callback_helper4.hpp:21
Typedefs of common function pointers.
template long integral_verify_test< 4 >(const std::string &, slong, callback_helper< 4 >::cb_str_type)
long integral_verify_test(const std::string &filepath, slong working_prec, typename callback_helper< N >::cb_str_type cb)
Runs a test of single cartesian integrals.
Definition: test_integral.cpp:97
template long integral_single_verify_test< 4 >(const std::string &, slong, callback_helper< 4 >::cb_single_str_type)
template void integral_single_create_test< 4 >(const std::string &, const std::string &, slong, long, const std::string &, callback_helper< 4 >::cb_single_str_type)
void integral_single_create_test(const std::string &input_filepath, const std::string &output_filepath, slong working_prec, long ndigits, const std::string &header, typename callback_helper< N >::cb_single_str_type cb)
Creates a test of single cartesian integrals.
Definition: test_integral_single.cpp:20
cb_integral4_str cb_str_type
Definition: callback_helper4.hpp:18
cb_integral4_single_str cb_single_str_type
Definition: callback_helper4.hpp:22
template void integral_create_test< 4 >(const std::string &, const std::string &, slong, long, const std::string &, callback_helper< 4 >::cb_str_type)