|
for (int lev = 0; lev <= finest_level; lev++) { |
|
max_temp = maxDerive("Temp", time, local_flag); |
|
} |
Copilot found some unnecessary looping. It thinks it should be something like getLevel(lev).maxDerive(...) with a running max, but it's not obvious to me exactly what it should be.
PeleC/Exec/RegTests/TGReact/prob.cpp
Lines 187 to 189 in b3264de
Copilot found some unnecessary looping. It thinks it should be something like
getLevel(lev).maxDerive(...)with a runningmax, but it's not obvious to me exactly what it should be.