Added a comment about timestepping and autoformat

This commit is contained in:
jpekkila
2019-07-04 17:25:54 +03:00
parent d1a93b7d4e
commit ad7a497eef
2 changed files with 5 additions and 8 deletions

View File

@@ -30,9 +30,9 @@
#include "config_loader.h"
#include "core/math_utils.h"
#include "model/host_forcing.h"
#include "model/host_memory.h"
#include "model/host_timestep.h"
#include "model/host_forcing.h"
#include "model/model_boundconds.h"
#include "model/model_reduce.h"
#include "model/model_rk3.h"
@@ -701,12 +701,11 @@ run_autotest(void)
const AcReal dt = host_timestep(umax, config);
#if LFORCING
//CURRENTLY AUTOTEST NOT SUPPORTED WITH FORCING!!!
// CURRENTLY AUTOTEST NOT SUPPORTED WITH FORCING!!!
#endif
// Host integration step
model_rk3(dt, model_mesh);
boundconds(config, model_mesh);