Ops.prior {isotracer} | R Documentation |
Implementation of the '==' operator for priors
## S3 method for class 'prior'
Ops(e1, e2)
e1 , e2 |
Objects of class "prior". |
Boolean (or throws an error for unsupported operators).
p <- constant_p(0)
q <- constant_p(4)
p == q
p <- hcauchy_p(2)
q <- hcauchy_p(2)
p == q