Skip to content

Commit

Permalink
accomodating API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
William Tobin committed Aug 13, 2018
1 parent b552b32 commit 0c041b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/aggregateNumbering.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ void test_numbering(apf::Mesh * m)
apf::Field * f4 = apf::createPackedField(m, "u4", 3);
apf::Sharing * def = apf::getSharing(m);
// global scope natural order
apf::Numbering * num_gbl_nat = apf::createAggNumbering(f1,1,3,MPI_COMM_WORLD,def);
apf::AggNumbering * num_gbl_nat = apf::createAggNumbering(f1,1,3,MPI_COMM_WORLD,def);
// global scope block order
apf::Numbering * num_gbl_blk = apf::createAggNumbering(f2,3,1,MPI_COMM_WORLD,def);
apf::AggNumbering * num_gbl_blk = apf::createAggNumbering(f2,3,1,MPI_COMM_WORLD,def);
// local scope natural order
apf::Numbering * num_lcl_nat = apf::createAggNumbering(f3,1,3,MPI_COMM_SELF);
apf::AggNumbering * num_lcl_nat = apf::createAggNumbering(f3,1,3,MPI_COMM_SELF);
// local scope block order
apf::Numbering * num_lcl_blk = apf::createAggNumbering(f4,3,1,MPI_COMM_SELF);
apf::AggNumbering * num_lcl_blk = apf::createAggNumbering(f4,3,1,MPI_COMM_SELF);
}

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

0 comments on commit 0c041b6

Please sign in to comment.