Chip Hogg

Results 48 comments of Chip Hogg

I like the idea of a separate issue; I filed #300 for this. I don't think it makes sense to close this present issue while the bug is still present....

I wrote this test case just now, to check and see if the above bug is fixed: ```cpp constexpr auto x = (1.0_q_m) * (1.0_q_km); const decltype(x) x_roundtrip = sqrt(x)...

Looks like this test passes: ```cpp const auto x = 1.0_q_m; const auto x_to_the_201 = pow(x); const decltype(x) x_roundtrip = pow(x_to_the_201); CHECK(x == x_roundtrip); ```

@mpusz, I think you can close this issue, unless there's anything else you can think of to test. (And it's one of the pinned issues for the repo, too, so...

Sorry for my late responses! I have been a little swamped lately. I've tried to knock out the "easy stuff" (removing `exp`; trivial doc updates; renaming `as_magnitude`), but I've let...

Ah---I think I can drill down a bit on a key distinction between the libraries, which explains why the Magnitude surfaces in mp-units but not au (au is the second...

I think there are some similarities with #351, in that the named units on the input are the same as the ones that show up on the output. The main...

> But we diverged here too much from the original subject of this issue which is to optimize the engine to prioritize magnitudes of `10`, `2`, and `pi` before going...

Your timing is impeccable! We are at the tail end of implementing #300, which will definitively resolve #195. All that remains is for the final PR, #368, to be reviewed...

Very interesting question! I am not an expert in luminance by any means, but I did a little reading. Here are my thoughts. - The steradian is exactly equivalent to...