Skip to content

Commit f7b277d

Browse files
committed
Fix typo
1 parent 17b6be5 commit f7b277d

File tree

1 file changed

+2
-2
lines changed
  • source/framework/algorithm/include/lue/framework/algorithm/definition

1 file changed

+2
-2
lines changed

source/framework/algorithm/include/lue/framework/algorithm/definition/accu_trigger.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,12 @@ namespace lue {
150150

151151
// Now we know the final, total amount of inflow that enters this cell
152152

153-
// Assume the trigger is exceeded ...
153+
// Assume the trigger is reached ...
154154
outflow += external_inflow;
155155
remainder = 0;
156156

157157
// ... but if not, store the material
158-
if (outflow <= trigger)
158+
if (outflow < trigger)
159159
{
160160
std::swap(outflow, remainder);
161161
}

0 commit comments

Comments
 (0)