Skip to content

Commit

Permalink
Fix missing brace in testing
Browse files Browse the repository at this point in the history
  • Loading branch information
CyprienBosserelle committed Jun 26, 2024
1 parent f21fd9d commit 0548153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Testing.cu
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ template <class T> bool Testing(Param XParam, Forcing<float> XForcing, Model<T>
*/
bool wallbndleft, wallbndright, wallbndbot, wallbndtop;
log("\t###AOI bnd wall test ###");
wallbndleft=TestAIObnd(XParam, XModel, XModel_g,false,false, false);
wallbndleft = TestAIObnd(XParam, XModel, XModel_g, false, false, false);
wallbndright = TestAIObnd(XParam, XModel, XModel_g, false, true, false);
wallbndbot = TestAIObnd(XParam, XModel, XModel_g, true, false, false);
wallbndtop = TestAIObnd(XParam, XModel, XModel_g, true, true, false);
Expand All @@ -280,7 +280,7 @@ template <class T> bool Testing(Param XParam, Forcing<float> XForcing, Model<T>
wallbndtop = TestAIObnd(XParam, XModel, XModel_g, true, true, true);
result = (wallbndleft & wallbndright & wallbndbot & wallbndtop) ? "successful" : "failed";
log("\t\tAOI bnd wall test : " + result);

}
if (mytest == 13)
{
/* Test 13 is to test the input of different roughness maps (and different bathymetry at the same time)
Expand Down

0 comments on commit 0548153

Please sign in to comment.