[sage-devel] Re: Monomial ideal interface

2008-05-09 Thread Michael Brickenstein
Hi! If there is bigger interest in monomial ideals, they can represented very efficiently in the case of Boolean polynomials, by a single decision diagram. Operations between monomial ideals can be implemented by single, very efficient ZDD operations. If you don't have degree bound one per variabl

[sage-devel] Re: documentation for 'view'

2008-05-09 Thread kcrisman
On May 9, 3:25 pm, John H Palmieri <[EMAIL PROTECTED]> wrote: > I've posted a patch to the trac server with some documentation changes > along these lines: > > http://trac.sagemath.org/sage_trac/ticket/3145 > Just a question from the uninformed peanut gallery - under 2.10.3 in the notebook, I g

[sage-devel] Re: documentation for 'view'

2008-05-09 Thread John H Palmieri
I've posted a patch to the trac server with some documentation changes along these lines: http://trac.sagemath.org/sage_trac/ticket/3145 John On May 7, 11:07 am, John H Palmieri <[EMAIL PROTECTED]> wrote: > The documentation for 'view' has one typo, and perhaps some other > problems. Part o

[sage-devel] Re: backslash in documentation?

2008-05-09 Thread John H Palmieri
On May 9, 11:48 am, "William Stein" <[EMAIL PROTECTED]> wrote: > On Fri, May 9, 2008 at 11:41 AM, John H Palmieri <[EMAIL PROTECTED]> wrote: > > > > > > > How do you put a backslash in a documentation string for a function? > > > def function(x, str=''): > >r""" > >The string str could b

[sage-devel] Re: backslash in documentation?

2008-05-09 Thread William Stein
On Fri, May 9, 2008 at 11:41 AM, John H Palmieri <[EMAIL PROTECTED]> wrote: > > How do you put a backslash in a documentation string for a function? > > def function(x, str=''): >r""" >The string str could be a LaTeX command like '\vspace{3em}'. >""" >return None > > If I type 'fun

[sage-devel] backslash in documentation?

2008-05-09 Thread John H Palmieri
How do you put a backslash in a documentation string for a function? def function(x, str=''): r""" The string str could be a LaTeX command like '\vspace{3em}'. """ return None If I type 'function?', I get The string str could be a LaTeX command like 'vspace{3em}'. Note that t

[sage-devel] Monomial ideal interface

2008-05-09 Thread Bjake Hammersholt Roune
Many otherwise intractable computations are possible on large monomial ideals by using monomial ideal algorithms in place of the more general algorithms. I am considering how best to give users of Sage access to these algorithms, as they become available through integration with Frobby. I would li