Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sbalzarini Lab
S
Software
P
Parallel Computing
OpenFPM
openfpm_pdata
Commits
e47739a2
Commit
e47739a2
authored
May 02, 2017
by
incardon
Browse files
Eliminating sizeof check
parent
9ca7949f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Decomposition/Distribution/Distribution_unit_tests.hpp
View file @
e47739a2
...
...
@@ -168,7 +168,7 @@ BOOST_AUTO_TEST_CASE( Metis_distribution_test)
// operator= functions
// operator== functions
BOOST_REQUIRE_EQUAL
(
sizeof
(
MetisDistribution
<
3
,
float
>
),
720ul
);
//
BOOST_REQUIRE_EQUAL(sizeof(MetisDistribution<3,float>),720ul);
}
BOOST_AUTO_TEST_CASE
(
Parmetis_distribution_test
)
...
...
@@ -274,7 +274,7 @@ BOOST_AUTO_TEST_CASE( Parmetis_distribution_test)
//! [refine with parmetis the decomposition]
BOOST_REQUIRE_EQUAL
(
sizeof
(
ParMetisDistribution
<
3
,
float
>
),
872ul
);
//
BOOST_REQUIRE_EQUAL(sizeof(ParMetisDistribution<3,float>),872ul);
}
BOOST_AUTO_TEST_CASE
(
DistParmetis_distribution_test
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment