示例#1
0
// if the user calls this, then the enumeration of dof 
// is updated
void Space::set_element_order(int id, int order)
{
  set_element_order_internal(id, order);

  // since space changed, enumerate basis functions
  this->assign_dofs();
}
示例#2
0
// Sets element order and updates enumeration of dofs. Intended for
// the user.
void HcurlSpace::set_element_order(int id, int order)
{
  set_element_order_internal(id, order);

  // since space changed, call assign_dofs()
  this->assign_dofs();
}