Skip to content

Commit a6f14fe

Browse files
committed
Test ParsedFEMFunction copying
1 parent 3a61395 commit a6f14fe

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

tests/numerics/parsed_fem_function_test.C

+15-5
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,24 @@ private:
141141
if (c->has_elem() &&
142142
c->get_elem().processor_id() == TestCommWorld->rank())
143143
{
144-
ParsedFEMFunction<Number> x2(*sys, "x2");
145-
ParsedFEMFunction<Number> xy8(*sys, "x2*y4");
144+
// Test that we can copy these into vectors
145+
std::vector<ParsedFEMFunction<Number>> pfvec;
146146

147-
// Test that move constructor works
148-
ParsedFEMFunction<Number> xy8_stolen(std::move(xy8));
147+
{
148+
ParsedFEMFunction<Number> x2(*sys, "x2");
149+
ParsedFEMFunction<Number> xy8(*sys, "x2*y4");
150+
151+
// Test that move constructor works
152+
ParsedFEMFunction<Number> xy8_stolen(std::move(xy8));
153+
154+
pfvec.push_back(xy8_stolen);
155+
156+
LIBMESH_ASSERT_FP_EQUAL
157+
(2.0, libmesh_real(xy8_stolen(*c,Point(0.5,0.5,0.5))), TOLERANCE*TOLERANCE);
158+
}
149159

150160
LIBMESH_ASSERT_FP_EQUAL
151-
(2.0, libmesh_real(xy8_stolen(*c,Point(0.5,0.5,0.5))), TOLERANCE*TOLERANCE);
161+
(2.0, libmesh_real(pfvec[0](*c,Point(0.5,0.5,0.5))), TOLERANCE*TOLERANCE);
152162
}
153163
}
154164

0 commit comments

Comments
 (0)