@@ -15,13 +15,13 @@ void test_numbering(apf::Mesh * m)
15
15
apf::Field * f4 = apf::createPackedField (m, " u4" , 3 );
16
16
apf::Sharing * def = apf::getSharing (m);
17
17
// global scope natural order
18
- apf::Numbering * num_gbl_nat = apf::createAggNumbering (f1,1 ,3 ,MPI_COMM_WORLD,def);
18
+ apf::AggNumbering * num_gbl_nat = apf::createAggNumbering (f1,1 ,3 ,MPI_COMM_WORLD,def);
19
19
// global scope block order
20
- apf::Numbering * num_gbl_blk = apf::createAggNumbering (f2,3 ,1 ,MPI_COMM_WORLD,def);
20
+ apf::AggNumbering * num_gbl_blk = apf::createAggNumbering (f2,3 ,1 ,MPI_COMM_WORLD,def);
21
21
// local scope natural order
22
- apf::Numbering * num_lcl_nat = apf::createAggNumbering (f3,1 ,3 ,MPI_COMM_SELF);
22
+ apf::AggNumbering * num_lcl_nat = apf::createAggNumbering (f3,1 ,3 ,MPI_COMM_SELF);
23
23
// local scope block order
24
- apf::Numbering * num_lcl_blk = apf::createAggNumbering (f4,3 ,1 ,MPI_COMM_SELF);
24
+ apf::AggNumbering * num_lcl_blk = apf::createAggNumbering (f4,3 ,1 ,MPI_COMM_SELF);
25
25
}
26
26
27
27
void write_output (apf::Mesh * m, const char * fn)
0 commit comments