#3186 - fix 64 bit OSX build support for numpy
On 24 Cze, 16:59, "Dr. David Kirkby" wrote:
> William said the other day he was not aware of any fake gcc's. Well numpy has
> a
> really dumb one, which looks like someone tried to work around 64-bit issues
> at
> some time in the past.
>
> drkir..
Seems to be related to #9086 - LaTeX representation of negative
symbolic fractions broken (http://trac.sagemath.org/sage_trac/ticket/
9086).
--
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to
sage-devel+unsubscr...@googlegroups
Example:
{{{
var('q r')
fp = q / r
fn = -q / r + r / -q
print(fp)
print(fn)
show(fp)
show(fn)
html("$fp = %s$"%(latex(fp)))
html("$fn = %s$"%(latex(fn)))
}}}
Output:
{{{
q/r
-q/r - r/q
\newcommand{\Bold}[1]{\mathbf{#1}}\frac{q}{r}
\newcommand{\Bold}[1]{\mathbf{#1}}\frac{q}{r} + \frac{r}{q}
fp