This is related to stan-dev/stanc3#997 / stan-dev/stanc3#1011
There are several functions which we don't define in stan::math but rather use std:: (or don't qualify them at all) for when the argument is only reals or ints. As far as I can tell, these are:
It would be great to redirect these within the library, so we can codegen all functions as fully qualified, e.g. stan::math::pow.
We may also need more definitions for norm and pow of complex numbers, see this log for what currently fails
This is related to stan-dev/stanc3#997 / stan-dev/stanc3#1011
There are several functions which we don't define in stan::math but rather use std:: (or don't qualify them at all) for when the argument is only reals or ints. As far as I can tell, these are:
It would be great to redirect these within the library, so we can codegen all functions as fully qualified, e.g.
stan::math::pow.We may also need more definitions for
normandpowof complex numbers, see this log for what currently fails