コード例 #1
0
ファイル: space.cpp プロジェクト: mhanus/hermes-legacy
// 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
ファイル: space_hcurl.cpp プロジェクト: B-Rich/hermes-legacy
// 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();
}