File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ class CVariable {
416416 /* !
417417 * \brief Store the adjoint solution of the extra adjoint into the external container.
418418 */
419- void Add_SolutionExtra_To_ExternalExtra () {
419+ void Set_ExternalExtra_To_SolutionExtra () {
420420 assert (SolutionExtra.size () == ExternalExtra.size ());
421421 for (auto iEntry = 0ul ; iEntry < SolutionExtra.size (); iEntry++)
422422 ExternalExtra[iEntry] = SolutionExtra[iEntry];
Original file line number Diff line number Diff line change @@ -2207,7 +2207,7 @@ void CSolver::Add_Solution_To_External() {
22072207 base_nodes->Add_External (iPoint, base_nodes->GetSolution (iPoint));
22082208 }
22092209
2210- base_nodes->Add_SolutionExtra_To_ExternalExtra ();
2210+ base_nodes->Set_ExternalExtra_To_SolutionExtra ();
22112211}
22122212
22132213void CSolver::Update_Cross_Term (CConfig *config, su2passivematrix &cross_term) {
You can’t perform that action at this time.
0 commit comments