Skip to content

Commit 3662df8

Browse files
committed
Merge remote-tracking branch 'origin/feature_tape_debug_mode' into feature_tape_debug_mode
2 parents aa5d8f2 + 4a7c1ef commit 3662df8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Common/src/CConfig.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1190,7 +1190,7 @@ void CConfig::SetConfig_Options() {
11901190
addBoolOption("WRT_VOLUME_OVERWRITE", Wrt_Volume_Overwrite, true);
11911191
/*!\brief SYSTEM_MEASUREMENTS \n DESCRIPTION: System of measurements \n OPTIONS: see \link Measurements_Map \endlink \n DEFAULT: SI \ingroup Config*/
11921192
addEnumOption("SYSTEM_MEASUREMENTS", SystemMeasurements, Measurements_Map, SI);
1193-
/*!\brief MULTIZONE_ADAPT_FILENAME \n DESCRIPTION: Append zone numer to restart and solution filenames. \ingroup Config*/
1193+
/*!\brief MULTIZONE_ADAPT_FILENAME \n DESCRIPTION: Append zone number to restart and solution filenames. \ingroup Config*/
11941194
addBoolOption("MULTIZONE_ADAPT_FILENAME", Multizone_Adapt_FileName, YES);
11951195

11961196
/*!\par CONFIG_CATEGORY: FluidModel \ingroup Config*/

SU2_CFD/src/drivers/CDiscAdjMultizoneDriver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ int CDiscAdjMultizoneDriver::TapeTest_GatherErrors(struct AD::ErrorReport& error
308308
SU2_MPI::Gather(&num_errors, 1, MPI_INT, process_error.data(), 1, MPI_INT, 0, SU2_MPI::GetComm());
309309

310310
if (rank == MASTER_NODE) {
311-
std::cout << "\nNumber of detected tape inconsistencies: " << total_errors << std::endl;
311+
std::cout << "\nTotal number of detected tape inconsistencies: " << total_errors << std::endl;
312312
if(total_errors > 0 && size > 1) {
313313
std::cout << "\n";
314314
for (int irank = 0; irank < size; irank++) {

0 commit comments

Comments
 (0)