> [x==r1] would be consistent with the multivariable case; I like that
> better than True or [x==x], for example.
>

Does this mean [x==r1] when called for the first time, [x==r2] when
for the secod time and so on?

Look at the example below.

Robert

----------------------------------------------------------------------
| Sage Version 4.2.1, Release Date: 2009-11-14                       |
| Type notebook() for the GUI, and license() for information.        |
----------------------------------------------------------------------
Loading Sage library. Current Mercurial branch is: magic_variables
sage: y=var('y'); solve([x==x,y==y],[x,y])
[[x == r2, y == r1]]
sage: y=var('y'); solve([x==x,y==y],[x,y])
[[x == r4, y == r3]]
sage: y=var('y'); solve([x==x,y==y],[x,y])
[[x == r6, y == r5]]
sage:

-- 
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.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to