Skip to content

Commit 29f9b8c

Browse files
committed
remove comments
1 parent d9fa030 commit 29f9b8c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Common/include/geometry/dual_grid/CPoint.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -771,14 +771,14 @@ class CPoint {
771771
}
772772

773773
/*!
774-
* \brief Get the value of the old coordinates for implicit smoothing. <- Nijso: really?
774+
* \brief Get the value of the old coordinates.
775775
* \param[in] iPoint - Index of the point.
776776
* \return Old coordinates at a point.
777777
*/
778778
inline su2double* GetCoord_Old(unsigned long iPoint) { return Coord_Old[iPoint]; }
779779

780780
/*!
781-
* \brief Set the value of the vector <i>Coord_Old</i> for implicit smoothing. <- Nijso: really?
781+
* \brief Set the value of the vector <i>Coord_Old</i>.
782782
* \param[in] iPoint - Index of the point.
783783
* \param[in] coord_old - Value of the coordinates.
784784
*/

SU2_CFD/src/iteration/CDiscAdjFluidIteration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ void CDiscAdjFluidIteration::Preprocess(COutput* output, CIntegration**** integr
203203
for (auto iPoint = 0ul; iPoint < geometries[iMesh]->GetnPoint(); iPoint++) {
204204
if (dual_time_2nd) {
205205
geometries[iMesh]->nodes->SetCoord_n(iPoint, geometries[iMesh]->nodes->GetCoord_n1(iPoint));
206-
geometries[iMesh]->nodes->SetCoord_n1(iPoint, geometries[iMesh]->nodes->GetCoord_Old(iPoint)); // <- this is not implicit smoothing
206+
geometries[iMesh]->nodes->SetCoord_n1(iPoint, geometries[iMesh]->nodes->GetCoord_Old(iPoint));
207207
} else {
208208
geometries[iMesh]->nodes->SetCoord_n(iPoint, geometries[iMesh]->nodes->GetCoord_Old(iPoint));
209209
}

0 commit comments

Comments
 (0)