Skip to content
Snippets Groups Projects
Commit d9baa013 authored by Tomáš Jakubec's avatar Tomáš Jakubec
Browse files

names fix

parent 495771c6
No related branches found
No related tags found
No related merge requests found
......@@ -407,12 +407,12 @@ public:
void setupBoundaryCells(){
for (Face& face : getFaces()){
if (face.getCellLeftIndex == INVALID_INDEX(IndexType)){
if (face.getCellLeftIndex() == INVALID_INDEX(IndexType)){
IndexType cellIndex = BoundaryCells.size() | BOUNDARY_INDEX(IndexType);
face.setCellLeftIndex(cellIndex);
appendBoundaryCell(cellIndex, face.getIndex());
}
if (face.getCellRightIndex == INVALID_INDEX(IndexType)){
if (face.getCellRightIndex() == INVALID_INDEX(IndexType)){
IndexType cellIndex = BoundaryCells.size() | BOUNDARY_INDEX(IndexType);
face.setCellRightIndex(cellIndex);
appendBoundaryCell(cellIndex, face.getIndex());
......@@ -424,7 +424,7 @@ public:
void setupBoundaryCellsCenters() {
for(Cell& cell : BoundaryCells){
cell.SetCenter(getFaces().at(cell.getBoundaryElementIndex()).GetCenter());
cell.setCenter(getFaces().at(cell.getBoundaryElementIndex()).getCenter());
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment