Skip to content

Commit e1470b7

Browse files
John LageLagejohn
authored andcommitted
gh-52 change default oscTempPrecision digits returned to 9 from 16
1 parent c1b7e28 commit e1470b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mmtc-core/src/main/java/edu/jhuapl/sd/sig/mmtc/cfg/MmtcConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -903,8 +903,8 @@ public Integer getSclkScetApplicableDurationDays() {
903903
*/
904904
public int getOscTempFractionDigits() {
905905
final String keyName = "table.timeHistoryFile.oscTempFractionDigits";
906-
int numDigits = 16; // selected as the (approximately) largest number of fractional digits in a normal Java double
907-
// before floating point precision errors take over
906+
int numDigits = 9;
907+
908908
try {
909909
if (timeCorrelationConfig.getConfig().containsKey(keyName)) {
910910
numDigits = timeCorrelationConfig.getConfig().getInt(keyName);

0 commit comments

Comments
 (0)