1234567891011121314151617181920212223242526272829303132 |
- #ifndef SCATTNLAY_TESTS_TEST_CASES_HPP_
- #define SCATTNLAY_TESTS_TEST_CASES_HPP_
- #include <vector>
- #include <tuple>
- #include <string>
- #include <complex>
- std::vector< std::tuple< double, std::complex<double>, std::string > >
- parameters_bulk_sphere
- {
- {0.099, {0.75,0}, "Hong Du testcase:a"},
- {0.101, {0.75,0}, "Hong Du testcase:b"},
- {10, {0.75,0}, "Hong Du testcase:c"},
- {100, {1.33,1e-5}, "Hong Du testcase:e"},
- {0.055, {1.5, 1}, "Hong Du testcase:g"},
- {0.056, {1.5, 1}, "Hong Du testcase:h"},
- {100, {1.5, 1}, "Hong Du testcase:i"},
- {1, {10, 10}, "Hong Du testcase:k"},
- {1000, {0.75,0}, "Hong Du testcase:d"},
- #ifdef MULTI_PRECISION
- #endif
- };
- #endif
|