|
Lines 1-20
Link Here
|
| 1 |
Fix to Schur data manager caused by the introduction of the output meter; |
|
|
| 2 |
only affects MBDyn 1.2.6 when --enable-schur |
| 3 |
|
| 4 |
Index: mbdyn/base/schurdataman.cc |
| 5 |
=================================================================== |
| 6 |
RCS file: /var/cvs/mbdyn/mbdyn/mbdyn-1.0/mbdyn/base/schurdataman.cc,v |
| 7 |
retrieving revision 1.40.2.6 |
| 8 |
retrieving revision 1.40.2.7 |
| 9 |
diff -u -r1.40.2.6 -r1.40.2.7 |
| 10 |
--- mbdyn/base/schurdataman.cc 18 Jan 2006 16:29:56 -0000 1.40.2.6 |
| 11 |
+++ mbdyn/base/schurdataman.cc 8 Feb 2006 20:02:29 -0000 1.40.2.7 |
| 12 |
@@ -1835,7 +1835,7 @@ |
| 13 |
DEBUGCOUT("Entering SchurDataManager::Output()" << std::endl); |
| 14 |
|
| 15 |
/* output only at multiples of iOutputFrequency */ |
| 16 |
- if ((!force) && (iOutputCount++%iOutputFrequency)) { |
| 17 |
+ if ((!force) && !pOutputMeter->dGet()) { |
| 18 |
return; |
| 19 |
} |
| 20 |
|