Where sd_1 appears to be the standard deviation on the group effects for a brms formula such as:
y ~ x1 + (1|Group)
What is the purpose of subtracting the lccdf in this prior? The closest I seem be getting is that it’s effectively truncating the possible values of sd_1 to a lower bound of 0 and an alternative coding might be:
If you don’t subtract the log complimentary CDF for a half Student t distribution (or another distribution defined over the entire real line), then the log kernel of the posterior distribution would be off by a constant and some post-estimation methods, such as Bayes Factors, would be incorrectly calculated. Although doing so does not affect the posterior draws, packages such as brms have to be strictly correct because we cannot know what the user is going to do with the results subsequently.
If you are not using the functions in the bridgesampling package, then it is probably not worth your time to figure out why packages like brms calculate all the constants.