<div dir="ltr">Given a bunch of edges, I'm trying to get the vertices on these edges. The output of<div>```</div><div><div>  std::cout << "num boundary edges " << edges.size() << std::endl;</div><div>  moab::Range verts;</div><div>  rval = mcomm_->get_moab()->get_adjacencies(edges, 0, false, verts);</div><div>  if (rval != moab::MB_SUCCESS) {</div><div>    throw std::runtime_error("error in moab::get_adjacencies");</div><div>  }</div><div>  std::cout << "num boundary verts: " << verts.size() << std::endl;</div></div><div>```</div><div>is</div><div>```</div><div><div>num boundary edges 57</div><div>num boundary verts: 0</div></div><div>```</div><div>For the life of me I don't see what's wrong here. Any obvious mistakes?</div><div><br></div><div>Cheers,</div><div>Nico</div></div>