Skip to content

Commit aaa7f48

Browse files
committed
fix: reduce CID scoreTol default from 0.001 to 1e-5
MCI absolute values scale with tree size, so 0.001 was too aggressive for larger trees. 1e-5 is well above floating-point noise while preserving sensitivity to real improvements.
1 parent 5774d3b commit aaa7f48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/InfoConsensus.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ InfoConsensus <- function(trees,
278278
nThreads = nThreads,
279279
screeningK = screeningK,
280280
screeningTolerance = screeningTolerance,
281-
scoreTol = .NullOr(ctrl[["scoreTol"]], 0.001),
281+
scoreTol = .NullOr(ctrl[["scoreTol"]], 1e-5),
282282
plateauReps = .NullOr(ctrl[["plateauReps"]], 3L)
283283
)
284284

0 commit comments

Comments
 (0)