yade-dev team mailing list archive
-
yade-dev team
-
Mailing list archive
-
Message #10261
[Branch ~yade-pkg/yade/git-trunk] Rev 3764: FlowEngine: increment a counter correctly
------------------------------------------------------------
revno: 3764
committer: Bruno Chareyre <bruno.chareyre@xxxxxxxxxxxxxxx>
timestamp: Mon 2013-11-25 03:04:22 +0100
message:
FlowEngine: increment a counter correctly
modified:
pkg/dem/FlowEngine.cpp
--
lp:yade
https://code.launchpad.net/~yade-pkg/yade/git-trunk
Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-pkg/yade/git-trunk/+edit-subscription
=== modified file 'pkg/dem/FlowEngine.cpp'
--- pkg/dem/FlowEngine.cpp 2013-11-25 00:52:12 +0000
+++ pkg/dem/FlowEngine.cpp 2013-11-25 02:04:22 +0000
@@ -62,6 +62,7 @@
timingDeltas->checkpoint ( "Update_Volumes" );
Eps_Vol_Cumulative += eps_vol_max;
+ retriangulationLastIter++;
if (!updateTriangulation) updateTriangulation = // If not already set true by another function of by the user, check conditions
(defTolerance>0 && Eps_Vol_Cumulative > defTolerance) || retriangulationLastIter>meshUpdateInterval;
@@ -729,7 +730,7 @@
timingDeltas->checkpoint("Triangulating");
UpdateVolumes (solver);
Eps_Vol_Cumulative += eps_vol_max;
-
+ retriangulationLastIter++;
if (!updateTriangulation) updateTriangulation = // If not already set true by another function of by the user, check conditions
(defTolerance>0 && Eps_Vol_Cumulative > defTolerance) || retriangulationLastIter>meshUpdateInterval;