Ask Your Question
1

A (beginner) problem with Cython

asked 11 years ago

Why the following small code generates a problem in Sage-Cython ?

from sage.all import *

cpdef acceptablenumbers(int n, int m):
    cdef int i,a,s
    cdef list S,l
    S=[]
    for i in range(n,m+1):
        l=list(factor(i))
        a=len(l)
        s=sum(l[j][1] for j in range(a))
        if ((a==3 and s>3) or a>3):
            S.append(i)
    return S

while the following code runs very well in Sage-Python :

def acceptablenumbers(n,m):
    S=[]
    for i in range(n,m+1):
        l=list(factor(i))
        a=len(l)
        s=sum(l[j][1] for j in range(a))
        if ((a==3 and s>3) or a>3):
            S.append(i)
    return S
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 11 years ago

Luca gravatar image

I don't think Cython supports generators yet. In any case, changing

s=sum(l[j][1] for j in range(a))

to

s=sum([l[j][1] for j in range(a)])

solves the issue.

Preview: (hide)
link

Comments

Thank you Luca, you solved my problem.

Sébastien Palcoux gravatar imageSébastien Palcoux ( 11 years ago )

The yield keyword is available and works, though :-)

Nathann gravatar imageNathann ( 11 years ago )

@Nathann : It works for what ? What do you mean ?

Sébastien Palcoux gravatar imageSébastien Palcoux ( 11 years ago )

Well, I just meant that it works in Cython the same way that it works in Python, which is still somehow recent.

Nathann gravatar imageNathann ( 11 years ago )

@Nathann : I'm sorry for my misunderstanding, but what is your "it" in "it works" ?

Sébastien Palcoux gravatar imageSébastien Palcoux ( 11 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 358 times

Last updated: Sep 04 '13