On 11/23/13 7:39 AM, Jason Grout wrote:
def TD(k,n,tried=None):
    tried = set() if tried is None else tried
    1) Try to see if some TD-specific construction is available for this
set of parameters.
    tried.add('TD')
    2) elif if 'OA' not in tried: call OA with the current tried set,
and return it
    3) elif 'MOLS' not in tried: call MOLS with the current tried set
and return it

I guess 2) and 3) shouldn't be elifs, just ifs.  But you get the idea.

Jason


--
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to