36 std::vector<std::vector<unsigned int>> index_sets(4);
37 index_sets[0].resize(2);
40 index_sets[1].resize(3);
44 index_sets[2].resize(3);
48 index_sets[3].resize(5);
71 (composite_inner, index_sets[3]);
75 composite_inner(
Point(0), 0, test_one);
77 LIBMESH_ASSERT_FP_EQUAL(2, test_one(0), 1.e-12);
78 LIBMESH_ASSERT_FP_EQUAL(2, test_one(1), 1.e-12);
79 LIBMESH_ASSERT_FP_EQUAL(2, test_one(2), 1.e-12);
80 LIBMESH_ASSERT_FP_EQUAL(1, test_one(3), 1.e-12);
81 LIBMESH_ASSERT_FP_EQUAL(1, test_one(4), 1.e-12);
87 cf_three_copy_assign = cf_three;
88 cf_three_move_assign = std::move(cf_three_copy_assign);
98 composite_outer_copy2 = std::move(composite_outer_copy1);
101 composite_outer_copy2(
Point(0), 0, test_two);
103 LIBMESH_ASSERT_FP_EQUAL(3, test_two(0), 1.e-12);
104 LIBMESH_ASSERT_FP_EQUAL(3, test_two(2), 1.e-12);
105 LIBMESH_ASSERT_FP_EQUAL(3, test_two(4), 1.e-12);
106 LIBMESH_ASSERT_FP_EQUAL(2, test_two(5), 1.e-12);
107 LIBMESH_ASSERT_FP_EQUAL(2, test_two(1), 1.e-12);
108 LIBMESH_ASSERT_FP_EQUAL(2, test_two(3), 1.e-12);
109 LIBMESH_ASSERT_FP_EQUAL(1, test_two(6), 1.e-12);
110 LIBMESH_ASSERT_FP_EQUAL(1, test_two(7), 1.e-12);
115#ifdef LIBMESH_HAVE_FPARSER
131 {
return p(0)*p(0) + p(1)*p(1) + t*t; };
134 std::vector<unsigned int> index_set(1,0);
154 x2y2t2_copy2 = x2y2t2_copy1;
182 x2y2t2_move2 = std::move(x2y2t2_move1);