Home
last modified time | relevance | path

Searched refs:_activeCells (Results 1 – 1 of 1) sorted by relevance

/dports/cad/gmsh/gmsh-4.9.2-source/Numeric/
H A Dcartesian.h43 std::set<int> _activeCells; variable
75 int n = _activeCells.size() * coeff; in _getNumElements()
82 for(auto it = _activeCells.begin(); it != _activeCells.end(); ++it) {
151 cellIter activeCellsBegin() { return _activeCells.begin(); } in activeCellsBegin()
152 cellIter activeCellsEnd() { return _activeCells.end(); } in activeCellsEnd()
285 void insertActiveCell(int t) { _activeCells.insert(t); } in insertActiveCell()
286 void eraseActiveCell(int t) { _activeCells.erase(t); } in eraseActiveCell()
289 return (_activeCells.find(t) != _activeCells.end()); in activeCellExists()
321 for(auto it = _activeCells.begin(); it != _activeCells.end(); ++it) { in createNodalValues()