@@ -15,13 +15,13 @@ void test_numbering(apf::Mesh * m)
1515 apf::Field * f4 = apf::createPackedField (m, " u4" , 3 );
1616 apf::Sharing * def = apf::getSharing (m);
1717 // 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);
1919 // 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);
2121 // 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);
2323 // 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);
2525}
2626
2727void write_output (apf::Mesh * m, const char * fn)
0 commit comments