Skip to content

Commit 7d3aa73

Browse files
author
William Tobin
committed
accomodating API changes
1 parent 321127b commit 7d3aa73

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/aggregateNumbering.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

2727
void write_output(apf::Mesh * m, const char * fn)

0 commit comments

Comments
 (0)