Skip to content
Snippets Groups Projects

Feature/amalgamated

Closed Stephan Schulz requested to merge feature/amalgamated into refactor
7 files
+ 78
78
Compare changes
  • Side-by-side
  • Inline

Files

+ 4
4
@@ -46,7 +46,7 @@ BOOST_AUTO_TEST_CASE(empty) {
@@ -46,7 +46,7 @@ BOOST_AUTO_TEST_CASE(empty) {
if (!already_init)
if (!already_init)
MPI_Init(NULL, NULL);
MPI_Init(NULL, NULL);
ALL<double, double> test();
ALL::ALL<double, double> test();
int already_final;
int already_final;
MPI_Finalized(&already_final);
MPI_Finalized(&already_final);
@@ -60,11 +60,11 @@ BOOST_AUTO_TEST_CASE(simple) {
@@ -60,11 +60,11 @@ BOOST_AUTO_TEST_CASE(simple) {
if (!already_init)
if (!already_init)
MPI_Init(NULL, NULL);
MPI_Init(NULL, NULL);
ALL_LB_t method = ALL_LB_t::TENSOR;
ALL::LB_t method = ALL::TENSOR;
int dimension = 3;
int dimension = 3;
double gamma = 4.0;
double gamma = 4.0;
ALL<double, double> test(method, dimension, gamma);
ALL::ALL<double, double> test(method, dimension, gamma);
double check_dim = test.getDimension();
double check_dim = test.getDimension();
double check_gamma = test.getGamma();
double check_gamma = test.getGamma();
@@ -75,4 +75,4 @@ BOOST_AUTO_TEST_CASE(simple) {
@@ -75,4 +75,4 @@ BOOST_AUTO_TEST_CASE(simple) {
MPI_Finalize();
MPI_Finalize();
}
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
\ No newline at end of file
Loading