Source code for nodepy.rooted_trees

from __future__ import print_function

from __future__ import absolute_import
import numpy as np
from sympy import factorial, sympify, Rational
#from sage.combinat.combinat import permutations
from nodepy.utils import permutations
from six.moves import range

#=====================================================
[docs]class RootedTree(str): #===================================================== r""" A rooted tree is a directed acyclic graph with one node, which has no incoming edges, designated as the root. Rooted trees are useful for analyzing the order conditions of multistage numerical ODE solvers, such as Runge-Kutta methods and other general linear methods. The trees are represented as strings, using one of the notations introduced by Butcher (the third column of Table 300(I) of Butcher's text). The character 'T' is used in place of `\tau` to represent a vertex, and braces '{ }' are used instead of brackets '[ ]' to indicate that everything inside the braces is joined to a single parent node. Thus the first four trees are: 'T', '{T}', '{T^2}', {{T}}' These can be generated using the function :func:`list_trees`, which returns a list of all trees of a given order:: >>> from nodepy import * >>> for p in range(4): print(rt.list_trees(p)) [''] ['T'] ['{T}'] ['{{T}}', '{T^2}'] Note that the tree of order 0 is indicated by an empty string. If the tree contains an edge from vertex `A` to vertex `B`, vertex `B` is said to be a child of vertex `A`. A vertex with no children is referred to as a leaf. .. warning:: One important convention is assumed in the code; namely, that at each level, leaves are listed first (before any other subtrees), and if there are `n` leaves, we write 'T^n'. .. note:: Currently, powers cannot be used for subtrees; thus '{{T}{T}}' is valid, while '{{T}^2}' is not. This restriction may be lifted in the future. **Examples**:: >>> from nodepy import rooted_trees as rt >>> tree=rt.RootedTree('{T^2{T{T}}{T}}') >>> tree.order() 9 >>> tree.density() 144 >>> tree.symmetry() 2 Topologically equivalent trees are considered equal:: >>> tree2=RootedTree('{T^2{T}{T{T}}}') >>> tree2==tree True We can generate Python code to evaluate the elementary weight corresponding to a given tree for a given class of methods:: >>> rk.elementary_weight_str(tree) 'dot(b,dot(A,c)*dot(A,c*dot(A,c))*c**2)' **References**: * :cite:`butcher2003` * :cite:`hairer1993` """ def __init__(self,strg): """ TODO: - Check validity of strg more extensively - Accept any leaf ordering, but convert it to our convention - convention for ordering of subtrees? """ if any([strg[i] not in '{}T^1234567890' for i in range(len(strg))]): raise Exception('Not a valid rooted tree string (illegal character)') op,cl=strg.count('{'),strg.count('}') if op!=cl or (op+cl>0 and (strg[0]!='{' or strg[-1]!='}')): raise Exception('Not a valid rooted tree string') self=strg
[docs] def order(self): """ The order of a rooted tree, denoted `r(t)`, is the number of vertices in the tree. **Examples**:: >>> from nodepy import rooted_trees as rt >>> tree=rt.RootedTree('{T^2{T{T}}}') >>> tree.order() 7 """ from nodepy.strmanip import getint if self=='T': return 1 if self=='': return 0 r=self.count('{') pos=0 while pos!=-1: pos=self.find('T',pos+1) if pos!=-1: try: r+=getint(self[pos+2:]) except: r+=1 return r
[docs] def density(self): r""" The density of a rooted tree, denoted by `\gamma(t)`, is the product of the orders of the subtrees. **Examples**:: >>> from nodepy import rooted_trees as rt >>> tree=rt.RootedTree('{T^2{T{T}}}') >>> tree.density() 56 **Reference**: :cite:`butcher2003` p. 127, eq. 301(c) """ gamma=self.order() nleaves,subtrees=self._parse_subtrees() for tree in subtrees: gamma*=tree.density() return gamma
[docs] def symmetry(self): r""" The symmetry `\sigma(t)` of a rooted tree is... **Examples**:: >>> from nodepy import rooted_trees as rt >>> tree=rt.RootedTree('{T^2{T{T}}}') >>> tree.symmetry() 2 **Reference**: :cite:`butcher2003` p. 127, eq. 301(b) """ from nodepy.strmanip import getint if self=='T': return 1 sigma=1 if self[1]=='T': try: sigma=factorial(getint(self[3:])) except: pass nleaves,subtrees=self._parse_subtrees() while len(subtrees)>0: st=subtrees[0] nst=subtrees.count(st) sigma*=factorial(nst)*st.symmetry()**nst while st in subtrees: subtrees.remove(st) return sigma
[docs] def Dmap(self): """ Butcher's function `D(t)` which represents differentiation. Defined by `D(t) = 0` except for D('T')=1. **Reference**: :cite:`butcher1997` """ return self=='T'
[docs] def lamda(self,alpha,extraargs=[]): r""" Computes Butcher's functional lambda on a given tree for the function alpha. This is used to compute the product of two functions on trees. **Input**: * alpha -- a function on rooted trees * extraargs -- a list containing any additional arguments that must be passed to alpha **Output**: * tprod -- a list of trees [t1, t2, ...] * fprod -- a list of numbers [a1, a2, ...] The meaning of the output is that `\lambda(\alpha, t)(\beta) = a_1 \beta(t_1) + a_2 \beta(t_2) + \cdots`. **Examples**: >>> from nodepy import rt >>> tree = rt.RootedTree('{T{T}}') >>> tree.lamda(rt.Emap) (['T', '{T}', '{{T}}', '{T}', '{T^2}', '{T{T}}'], [1/2, 1, 1, 1/2, 1, 1]) **Reference**: :cite:`butcher2003` pp. 275-276 """ if self=='': return [RootedTree('')],[0] if self=='T': return [RootedTree('T')],[1] t,u=self._factor() if extraargs: l1,f1=t.lamda(alpha,*extraargs) l2,f2=u.lamda(alpha,*extraargs) alphau=alpha(u,*extraargs) else: l1,f1=t.lamda(alpha) l2,f2=u.lamda(alpha) alphau=alpha(u) tprod=l1 fprod=[alphau*f1i for f1i in f1 if f1!=0] #FOIL: for i in range(len(l1)): if f1!=0: for j in range(len(l2)): if f2!=0: tprod.append(l1[i]*l2[j]) fprod.append(f1[i]*f2[j]) return tprod,fprod
[docs] def lamda_str(self,alpha,extraargs=[]): """ Alternate version of :meth:`lamda`, but returns a string. Hopefully we can get rid of this (and the other string functions) when *SAGE* can handle noncommutative symbolic algebra. """ if not isinstance(extraargs,list): extraargs=[extraargs] if self=='': return [RootedTree('')],[0] if self=='T': return [RootedTree('T')],[1] t,u=self._factor() if extraargs: l1,f1=t.lamda_str(alpha,*extraargs) l2,f2=u.lamda_str(alpha,*extraargs) alphau=alpha(u,*extraargs) else: l1,f1=t.lamda_str(alpha) l2,f2=u.lamda_str(alpha) alphau=alpha(u) tprod=l1 fprod=[str(f1i)+'*'+alphau for f1i in f1 if f1!=0] #FOIL: for i in range(len(l1)): if f1!=0: for j in range(len(l2)): if f2!=0: tprod.append(l1[i]*l2[j]) fprod.append(str(f1[i])+'*'+str(f2[j])) return tprod,fprod
def _factor(self): """ Returns two rooted trees, `t` and `u`, such that `self = t * u`. **Input**: - self -- any rooted tree **Output**: - t, u -- a pair of rooted trees whose product `t*u` is equal to self. **Examples**:: >>> tree=RootedTree('{T^2{T}}') >>> t,u=tree._factor() >>> t '{T{T}}' >>> u 'T' >>> t*u==tree True .. note:: This function is typically only called by lamda(). """ nleaves,subtrees=self._parse_subtrees() if nleaves==0: # Root has no leaves t=RootedTree('{'+''.join(subtrees[1:])+'}') u=RootedTree(subtrees[0]) if nleaves==1: t=RootedTree(self[0]+self[2:]) u=RootedTree('T') if nleaves==2: t=RootedTree(self[0:2]+self[4:]) u=RootedTree('T') if nleaves>2 and nleaves<10: t=RootedTree(self[0:3]+str(int(self[3])-1)+self[4:]) u=RootedTree('T') if nleaves>=10: t=RootedTree(self[0:3]+str(int(self[3:5])-1)+self[5:]) u=RootedTree('T') if t=='{}': t=RootedTree('T') return t,u
[docs] def Gprod(self,alpha,beta,alphaargs=[],betaargs=[]): r""" Returns the product of two functions on a given tree. **Input**: - alpha, beta -- two functions on rooted trees that return symbolic or numeric values - alphaargs -- a string containing any additional arguments that must be passed to function alpha - betaargs -- a string containing any additional arguments that must be passed to function beta **Output**: - (alpha*beta)(self) -- i.e., the function that is the product (in `G`) of the functions *alpha* and *beta*. Note that this product is not commutative. The product is given by $$ (\\alpha*\\beta)('')=\\beta('') $$ $$ (\\alpha*\\beta)(t) = \\lambda(\\alpha,t)(\\beta) + \\alpha(t)\\beta('') $$ .. note:: :meth:`Gprod` can be used to compute products of more than two functions by passing :meth:`Gprod` itself in as *beta*, and providing the remaining functions to be multiplied as *betaargs*. **Examples**:: >>> from nodepy import rt >>> tree = rt.RootedTree('{T{T}}') >>> tree.Gprod(rt.Emap,Dmap) 1/2 **Reference**: :cite:`butcher2003` p. 276, Thm. 386A """ trees,factors=self.lamda(alpha,*alphaargs) s=0 for i in range(len(trees)): s+=factors[i]*beta(trees[i],*betaargs) s+=alpha(self,*alphaargs)*beta(RootedTree(""),*betaargs) return s
[docs] def Gprod_str(self,alpha,beta,alphaargs=[],betaargs=[]): """ Alternate version of :meth:`Gprod`, but operates on strings. Hopefully can be eliminated later in favor of symbolic manipulation. """ trees,facs=self.lamda_str(alpha,*alphaargs) s="" for i in range(len(trees)): if facs[i]!=0: bet=beta(trees[i],*betaargs) if bet not in ['0','']: if i>0: s+='+' s+=str(facs[i])+"*"+bet bet=beta(RootedTree(""),*betaargs) if bet not in ['0','']: alph=alpha(self,*alphaargs) s+="+"+str(sympify(alph+'*'+bet)) return s
def _plot_subtree(self,xroot,yroot,xwidth): """ Recursively plots subtrees. Should only be called from :meth:`plot`. **Input**: - xroot, yroot -- coordinates at which root of this subtree is plotted - xwidth -- width in which this subtree must fit, in order to avoid possibly overlapping with others """ import matplotlib.pyplot as plt ychild=yroot+1 nleaves,subtrees=self._parse_subtrees() nchildren=nleaves+len(subtrees) dist=xwidth*(nchildren-1)/2. xchild=np.linspace(xroot-dist,xroot+dist,nchildren) plt.scatter(xchild,ychild*np.ones(nchildren)) for i in range(nchildren): plt.plot([xroot,xchild[i]],[yroot,ychild],'-k') if i>nleaves-1: subtrees[i-nleaves]._plot_subtree(xchild[i],ychild,xwidth/3.)
[docs] def plot(self,nrows=1,ncols=1,iplot=1,ttitle=''): """ Plots the rooted tree. **Input**: (optional) * nrows, ncols -- number of rows and columns of subplots in the figure * iplot -- index of the subplot in which to plot this tree These are only necessary if plotting more than one tree in a single figure using subplot. **Output**: None. The plot is created recursively by plotting the root, parsing the subtrees, plotting the subtrees' roots, and calling ``_plot_subtree`` on each child """ import matplotlib.pyplot as plt if iplot==1: plt.clf() plt.subplot(nrows,ncols,iplot) plt.scatter([0],[0]) if self!='T': self._plot_subtree(0,0,1.) fs=int(np.ceil(20./nrows)) plt.title(ttitle,{'fontsize': fs}) plt.xticks([]) plt.yticks([]) plt.axis('off')
def _parse_subtrees(self): """ Returns the number of leaves and a list of the subtrees, for a given rooted tree. **Output**: - nleaves -- number of leaves attached directly to the root - subtrees -- list of non-leaf subtrees attached to the root The method can be thought of as returning what remains if the root of the tree is removed. For efficiency, instead of returning possibly many copies of 'T', the leaves are just returned as a number. """ from nodepy.strmanip import get_substring, open_to_close, getint if str(self)=='T' or str(self)=='': return 0,[] pos=0 #Count leaves at current level if self[1]=='T': if self[2]=='^': nleaves=getint(self[3:]) else: nleaves=1 else: nleaves=0 subtrees=[] while pos!=-1: pos=self.find('{',pos+1) if pos!=-1: subtrees.append(RootedTree(get_substring(self,pos))) pos=open_to_close(self,pos) return nleaves,subtrees
[docs] def list_equivalent_trees(self): """ Returns a list of all strings (subject to our assumptions) equivalent to a given tree **Input**: - self -- any rooted tree **Output**: - treelist -- a list of all the 'legal' tree strings that produce the same tree. The list of equivalent trees is obtained by taking all permutations of the (non-leaf) subtrees. This routine is used to test equality of trees. """ nleaves,subtrees=self._parse_subtrees() if len(subtrees)==0: return [self] for i in range(len(subtrees)): subtrees[i]=str(subtrees[i]) treelist = [RootedTree('{'+_powerString('T',nleaves,powchar='^')+ ''.join(sts)+'}') for sts in permutations(subtrees)] return treelist
def __eq__(self,tree2): """ Test equivalence of two rooted trees. Generates all 'legal' strings equivalent to the first tree, and checks whether the second is in that list. """ ts=[str(t) for t in self.list_equivalent_trees()] if str(tree2) in ts: return True else: return False def __mul__(self,tree2): """ Returns Butcher's product: `t*u` is the tree obtained by attaching the root of `u` as a child to the root of `t`. """ from nodepy.strmanip import getint if self=='T': return RootedTree('{'+tree2+'}') if tree2=='T': # We're just adding a leaf to self nleaves,subtrees=self._parse_subtrees() if nleaves==0: return RootedTree(self[0]+'T'+self[1:]) if nleaves==1: return RootedTree(self[0]+'T^2'+self[2:]) if nleaves>1: n = getint(self[3:]) return RootedTree(self[0:3]+str(n+1)+self[(3+len(str(n))):]) else: return RootedTree(self[:-1]+tree2+'}') # tree2 wasn't just 'T'
#===================================================== #End of RootedTree class #===================================================== #=====================================================
[docs]def plot_all_trees(p,title='str'): #===================================================== """ Plots all rooted trees of order `p`. **Example**: Plot all trees of order 4:: >>> from nodepy import rt >>> rt.plot_all_trees(4) # doctest: +ELLIPSIS <Figure... """ import matplotlib.pyplot as plt forest=list_trees(p) nplots=len(forest) nrows=int(np.ceil(np.sqrt(float(nplots)))) ncols=int(np.floor(np.sqrt(float(nplots)))) if nrows*ncols<nplots: ncols=ncols+1 for tree in forest: if title=='str': ttitle=tree else: ttitle=title(tree) tree.plot(nrows,ncols,forest.index(tree)+1,ttitle=ttitle) fig=plt.figure(1) plt.setp(fig,facecolor='white') return fig
#=====================================================
[docs]def list_trees(p,ind='all'): #===================================================== """ Returns rooted trees of order `p`. **Input**: - p -- order of trees desired - ind -- if given, returns a single tree corresponding to this index. Not very useful since the ordering isn't obvious. OUTPUT: list of all trees of order `p` (or just one, if *ind* is provided). Generates the rooted trees using Albrecht's 'Recursion 3'. **Examples**: Produce column of Butcher's Table 302(I):: >>> for i in range(1,11): ... forest=list_trees(i) ... print(len(forest)) 1 1 2 4 9 20 48 115 286 719 .. warning:: This code is complete only up to order 10. We need to extend it by adding more subloops for `p>10`. TODO: Implement Butcher's formula (Theorem 302B) for the number of trees and determine to what order this is valid. **Reference**: :cite:`albrecht1996` """ if p>10: raise Exception('list_trees is not complete for orders p > 10.') if p==0: return [RootedTree('')] W=[[],[]] #This way indices agree with Albrecht R=[[],[]] R.append([RootedTree("{T}")]) W.append([RootedTree("{{T}}")]) for i in range(3,p): #Construct R[i] ps=_powerString("T",i-1,powchar="^") R.append([RootedTree("{"+ps+"}")]) for w in W[i-1]: R[i].append(w) #Construct W[i] #l=0: W.append([RootedTree("{"+R[i][0]+"}")]) for r in R[i][1:]: W[i].append(RootedTree("{"+r+"}")) for l in range(1,i-1): #level 1 for r in R[i-l]: ps=_powerString("T",l,powchar="^") W[i].append(RootedTree("{"+ps+r+"}")) for l in range(0,i-3): #level 2 for n in range(2,i-l-1): m=i-n-l if m<=n: #Avoid duplicate conditions for Rm in R[m]: lowlim=(m<n and [0] or [R[m].index(Rm)])[0] for Rn in R[n][lowlim:]: ps=_powerString("T",l,powchar="^") W[i].append(RootedTree("{"+ps+Rm+Rn+"}")) for l in range(0,i-5): #level 3 for n in range(2,i-l-3): for m in range(2,i-l-n-1): s=i-m-n-l if m<=n and n<=s: #Avoid duplicate conditions for Rm in R[m]: lowlim=(m<n and [0] or [R[m].index(Rm)])[0] for Rn in R[n][lowlim:]: lowlim2=(n<s and [0] or [R[n].index(Rn)])[0] for Rs in R[s][lowlim2:]: ps=_powerString("T",l,powchar="^") W[i].append(RootedTree("{"+ps+Rm+Rn+Rs+"}")) for l in range(0,i-7): #level 4 for n in range(2,i-l-5): for m in range(2,i-l-n-3): for s in range(2,i-l-n-m-1): t=i-s-m-n-l if s<=t and n<=s and m<=n: #Avoid duplicate conditions for Rm in R[m]: lowlim=(m<n and [0] or [R[m].index(Rm)])[0] for Rn in R[n][lowlim:]: lowlim2=(n<s and [0] or [R[n].index(Rn)])[0] for Rs in R[s][lowlim2:]: lowlim3=(s<t and [0] or [R[s].index(Rs)])[0] for Rt in R[t]: ps=_powerString("T",l,powchar="^") W[i].append(RootedTree("{"+ps+Rm+Rn+Rs+Rt+"}")) # The recursion above generates all trees except the 'blooms' # Now add the blooms: W[0].append(RootedTree("T")) for i in range(1,p): ps=_powerString("T",i,powchar="^") W[i].append(RootedTree("{"+ps+"}")) if ind=='all': return W[p-1] else: return W[p-1][ind]
def _powerString(s,npow,powchar="**",trailchar=''): r"""Raise string `s` to power *npow* with additional formatting.""" if npow==0: return "" else: if npow==1: return s+trailchar else: return s+powchar+str(npow)+trailchar #===================================================== # Functions on trees #=====================================================
[docs]def Dprod(tree,alpha): """ Evaluate *(alpha*D)(t)*. Note that this is not equal to *(D*alpha)(t)*. This function is necessary (rather than just using :meth:RootedTree.Gprod`) in order to avoid infinite recursions. **Examples**:: >>> from nodepy import rt >>> tree = rt.RootedTree('{T{T}}') >>> Dprod(tree,Emap) 1/2 """ if tree=='': return 0 if tree=='T': return alpha(RootedTree('')) nleaves,subtrees=tree._parse_subtrees() result=alpha(RootedTree('T'))**nleaves for subtree in subtrees: result*=alpha(subtree) return result
[docs]def Dprod_str(tree,alpha): if tree=='': return '0' if tree=='T': return alpha(RootedTree('')) nleaves,subtrees=tree._parse_subtrees() result=_powerString(alpha(RootedTree('T')),nleaves) for subtree in subtrees: if result!='': result+='*' result+=alpha(subtree) return result
[docs]def Dmap(tree): """ Butcher's function `D(t)`. Represents differentiation. Defined by `D(t)=0` except for `D('T')=1`. """ return 1*(tree=='T')
[docs]def Dmap_str(tree): return str(int(tree=='T'))
[docs]def Gprod(tree,alpha,beta,alphaargs='',betaargs=[]): """ Returns the product of two functions on a given tree. See Butcher p. 276, Thm. 386A.""" return tree.Gprod(alpha,beta,alphaargs,betaargs)
[docs]def Gprod_str(tree,alpha,beta,alphaargs='',betaargs=[]): return tree.Gprod_str(alpha,beta,alphaargs,betaargs)
[docs]def Emap(tree,a=1): """ Butcher's function `E^a(t)`. Gives the `B`-series for the exact solution advanced 'a' steps in time. **Examples**:: >>> from nodepy import rooted_trees as rt >>> tree=rt.RootedTree('{T^2{T{T}}}') >>> rt.Emap(tree) 1/56 >>> rt.Emap(tree,a=2) 16/7 **Reference**: :cite:`butcher1997` """ return Rational(a**tree.order(),(tree.density()))
[docs]def Emap_str(tree,a=1): return str(Rational(a**tree.order(),(tree.density())))
#=====================================================
[docs]def recursiveVectors(p,ind='all'): #===================================================== """ Generate recursive vectors using Albrecht's 'recursion 1'. These are essentially the order conditions for Runge-Kutta methods, excluding those that correspond to bushy trees. More specifically, these are the vectors that must be orthogonal to the vector of weights b. Note that the individual order conditions obtained from this algorithm are different from those obtained using Butcher's approach. But as a set of conditions up to some order they are, of course, equivalent. Follows :cite:`albrecht1996` p. 1718 .. warning:: This code is complete only up to order 14. We need to extend it by adding more subloops for `p>14`. **Example** Count number of conditions for order 12:: >>> from nodepy import rt >>> v = rt.recursiveVectors(12) >>> print(len(v)) 4765 """ if p>14: raise Exception('recursiveVectors is not complete for orders p > 14.') W=[[],[]] R=[[],[]] R.append(["tau[2]"]) W.append(["tau[2]"]) for i in range(3,p): #Construct R[i] R.append(["tau["+str(i)+"]"]) for w in W[i-1]: R[i].append("A,"+w) #Construct W[i] #l=0: W.append(R[i][:]) for l in range(1,i-1): #level 1 ps=_powerString("C",l,trailchar=",") for r in R[i-l]: W[i].append(ps+r) for l in range(0,i-3): #level 2 ps=_powerString("C",l,trailchar=",") for n in range(2,i-l-1): m=i-n-l if m<=n: #Avoid duplicate conditions for Rm in R[m]: # if m<n, start from R[0] # if m==n, start from Rm lowlim=(m<n and [0] or [R[m].index(Rm)])[0] for Rn in R[n][lowlim:]: W[i].append(ps+Rm+"*"+Rn) for l in range(0,i-5): #level 3 ps=_powerString("C",l,trailchar=",") for n in range(2,i-l-3): for m in range(2,i-l-n-1): s=i-m-n-l if m<=n and n<=s: #Avoid duplicate conditions for Rm in R[m]: lowlim=(m<n and [0] or [R[m].index(Rm)])[0] for Rn in R[n][lowlim:]: lowlim2=(n<s and [0] or [R[n].index(Rn)])[0] for Rs in R[s][lowlim2:]: W[i].append(ps+Rm+"*"+Rn+"*"+Rs) for l in range(0,i-7): #level 4 ps=_powerString("C",l,trailchar=",") for n in range(2,i-l-5): for m in range(2,i-l-n-3): for s in range(2,i-l-n-m-1): t=i-s-m-n-l if s<=t and n<=s and m<=n: #Avoid duplicate conditions for Rm in R[m]: lowlim=(m<n and [0] or [R[m].index(Rm)])[0] for Rn in R[n][lowlim:]: lowlim2=(n<s and [0] or [R[n].index(Rn)])[0] for Rs in R[s][lowlim2:]: lowlim3=(s<t and [0] or [R[s].index(Rs)])[0] for Rt in R[t][lowlim3:]: W[i].append(ps+Rm+"*"+Rn+"*"+Rs+"*"+Rt) for l in range(0,i-9): # level 5 ps=_powerString("C",l,trailchar=",") for n in range(2,i-l-7): for m in range(2,i-l-n-5): for s in range(2,i-l-n-m-3): for t in range(2,i-l-n-m-s-1): u=i-t-s-m-n-l if m<=n<=s<=t<=u: #Avoid duplicate conditions for Rm in R[m]: lowlim=(m<n and [0] or [R[m].index(Rm)])[0] for Rn in R[n][lowlim:]: lowlim2=(n<s and [0] or [R[n].index(Rn)])[0] for Rs in R[s][lowlim2:]: lowlim3=(s<t and [0] or [R[s].index(Rs)])[0] for Rt in R[t][lowlim3:]: lowlim4=(t<u and [0] or [R[t].index(Rt)])[0] for Ru in R[u][lowlim4:]: W[i].append(ps+Rm+"*"+Rn+"*"+Rs+"*"+Rt+"*"+Ru) for l in range(0,i-11): # level 6 ps=_powerString("C",l,trailchar=",") for m in range(2,i-l-9): for n in range(2,i-l-m-7): for s in range(2,i-l-n-m-5): for t in range(2,i-l-n-m-s-3): for u in range(2,i-l-n-m-s-t-1): v=i-t-s-m-n-l-u if m<=n<=s<=t<=u<=v: #Avoid duplicate conditions for Rm in R[m]: lowlim=(m<n and [0] or [R[m].index(Rm)])[0] for Rn in R[n][lowlim:]: lowlim2=(n<s and [0] or [R[n].index(Rn)])[0] for Rs in R[s][lowlim2:]: lowlim3=(s<t and [0] or [R[s].index(Rs)])[0] for Rt in R[t][lowlim3:]: lowlim4=(t<u and [0] or [R[t].index(Rt)])[0] for Ru in R[u][lowlim4:]: lowlim5=(u<v and [0] or [R[u].index(Ru)])[0] for Rv in R[v][lowlim5:]: W[i].append(ps+Rm+"*"+Rn+"*"+Rs+"*"+Rt+"*"+Ru+"*"+Rv) # It seems like the code above should give correct values for order up to 16, # but it does not agree with OEIS sequence A000081 starting at order 15. # I'm not sure what's wrong; it may be that this approach leads to duplicate conditions # starting only at order 15 (see comment on p. 1719 of Albrecht's paper). # The code below seems correct but in light of the issue above there is no point in using it. # for l in range(0,i-13): # level 7 # ps=_powerString("C",l,trailchar=",") # for n in range(2,i-l-11): # for m in range(2,i-l-n-9): # for s in range(2,i-l-n-m-7): # for t in range(2,i-l-n-m-s-5): # for u in range(2,i-l-n-m-s-t-3): # for v in range(2,i-l-n-m-s-t-u-1): # x=i-t-s-m-n-l-u # if m<=n<=s<=t<=u<=v<=x: #Avoid duplicate conditions # for Rm in R[m]: # lowlim=(m<n and [0] or [R[m].index(Rm)])[0] # for Rn in R[n][lowlim:]: # lowlim2=(n<s and [0] or [R[n].index(Rn)])[0] # for Rs in R[s][lowlim2:]: # lowlim3=(s<t and [0] or [R[s].index(Rs)])[0] # for Rt in R[t][lowlim3:]: # lowlim4=(t<u and [0] or [R[t].index(Rt)])[0] # for Ru in R[u][lowlim4:]: # lowlim5=(u<v and [0] or [R[u].index(Ru)])[0] # for Rv in R[v][lowlim5:]: # lowlim6=(v<x and [0] or [R[v].index(Rv)])[0] # for Rx in R[x][lowlim5:]: # W[i].append(ps+Rm+"*"+Rn+"*"+Rs+"*"+Rt+"*"+Ru+"*"+Rv+"*"+Rx) if ind=='all': return W[p-1] else: return W[p-1][ind]
#===================================================== #===================================================== #DEPRECATED FUNCTIONS #===================================================== #=====================================================
[docs]def py2tex(codestr): """Convert a Python code string to LaTeX.""" strout=codestr.replace("'","^T") strout=strout.replace("*","") strout=strout.replace(".^","^") strout='$'+strout+'$' return strout
if __name__ == "__main__": import doctest doctest.testmod()