unageek

Results 19 comments of unageek

It appears that we need to propagate `self.is_const` here: https://github.com/rust-lang/rust-bindgen/blob/2aed6b0216805e27228ed39988ffe1a1ffd7e940/src/ir/ty.rs#L324-L328 But that is not possible because the method returns the canonical type _by reference_.

This issue is tracked in https://github.com/NuGet/Home/issues/3584.

>opening a single inline asm! block, where they save the register, modify it, execute some code, and then restore it, before leaving the inline assembly block. Is that possible with...

@bjorn3 Thank you very much! Is it safe or not to specify `preserves_flags` in the `options`? ```rust #![feature(asm)] /// Returns x * y rounded down. fn mul_rd(mut x: f64, y:...

@jbghoul Your sample looks erroneous. Some pairs of segments have intersections in their interior; `edges[2]` and `edges[6]` intersect at point `(488631877382598139980470/386769141387059, -1215993899479476882645450/386769141387059)`, and `edges[3]` and `edges[6]` intersect at point `(244315947010920392397170/193384577278801,...

Regularised marching tetrahedra (RMT) [10.1016/S0097-8493(99)00076-X](https://doi.org/10.1016/S0097-8493(99)00076-X) is implemented.

Done in #142.

Fixed in #122.

The range parameter (the second parameter of `--rbf exp 1.0 1.0`) is too small compared to the spacing of the input data. Try a larger value.

As a workaround, how about adding the following CSS to make the text thicker? ```css @media screen { .katex { text-shadow: 0 0 currentColor; } } ``` Here is a...