You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sage -t -long "devel/sage/sage/plot/contour_plot.py"
**********************************************************************
File "/scratch/mabshoff/sage-3.4.1.rc2/devel/sage/sage/plot/contour_plot.py", line 195:
sage: implicit_plot(x^2+y^2 == 2, (-3,3), (-3,3)).show(aspect_ratio=1)
Expected nothing
Got:
doctest:2846: DeprecationWarning: Substitution using function-call syntax and
unnamed arguments is deprecated and will be removed from a future release of Sage; you
can use named arguments instead, like EXPR(x=..., y=...)
**********************************************************************
1 items had failures:
Make Sage hurt:
The problem is that implicit_plot takes a function, not a symbolic equation, so it views "x2+y2 == 1" as a function --- and that is very painful.
SOLUTION: Check if the input is an equation, and if so, make RHS zero, and plot corresponding function equal to 0.
Component: graphics
Issue created by migration from https://trac.sagemath.org/ticket/5706
The text was updated successfully, but these errors were encountered: