@@ -180,7 +180,7 @@ class CDriverBase {
180180 unsigned long GetNumberElements () const ;
181181
182182 /* !
183- * \brief Get the number of solution variables
183+ * \brief Get the number of solution variables
184184 * \return Number of solution variables.
185185 */
186186
@@ -760,16 +760,13 @@ class CDriverBase {
760760 }
761761
762762 /* !
763- * \brief Set the array of variables for the source in the point
763+ * \brief Set the array of variables for the source in the point
764764 * \param[in] iSolver - Solver index.
765765 * \param[in] iPoint - Point index.
766766 * \param[in] values - Vector values of the source term.
767767 */
768768 void SetPointCustomSource (unsigned short iSolver, unsigned long iPoint, std::vector<passivedouble> values) {
769769 auto * solver = solver_container[selected_zone][INST_0][MESH_0][iSolver];
770-
771- // if (values[0]>1.0e-6)
772- // cout << "iPoint="<<iPoint << ", setting custom point source" << values[0]<< endl;
773770 solver->SetCustomPointSource (iPoint, values);
774771 }
775772
@@ -799,7 +796,6 @@ inline void SetSolutionVector(unsigned short iSolver, unsigned long iPoint, vect
799796 unsigned short nVar = GetNumberSolverVars (iSolver);
800797 if (nVar != solutionVector.size () )
801798 SU2_MPI::Error (" Solution Vector size is not equal to Solver size." , CURRENT_FUNCTION);
802- // cout << "setting solution vector " << nodes->GetSolution(iPoint,0) << " " << solutionVector[0] << ", "<< nVar<< endl;
803799 for (unsigned int iVar = 0u ; iVar < nVar; ++iVar) {
804800 nodes->SetSolution (iPoint,iVar, solutionVector[iVar]);
805801 nodes->SetSolution_Old (iPoint,iVar, solutionVector[iVar]);
@@ -836,7 +832,6 @@ inline void SetPrimitiveVector(unsigned short iSolver, unsigned long iPoint, vec
836832 auto * nodes = solver->GetNodes ();
837833 auto nPrimvar = GetNumberPrimitiveVars (iSolver);
838834 vector<passivedouble> solutionvector (nPrimvar, 0.0 );
839- // cout << "setting primitive vector " << nodes->GetPrimitive(iPoint,0) << " " << primitiveVector[0] << ", "<< nPrimvar<< endl;
840835
841836 for (auto iVar = 0u ; iVar < nPrimvar; ++iVar) {
842837 nodes->SetPrimitive (iPoint,iVar, primitiveVector[iVar]);
0 commit comments