[ 
https://issues.apache.org/jira/browse/PYLUCENE-55?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17182110#comment-17182110
 ] 

Andreas Vajda edited comment on PYLUCENE-55 at 8/21/20, 7:49 PM:
-----------------------------------------------------------------

I tried a bunch of times to build and I'm now in a situation where I reproduced 
the issue.
I see only 3 getSynsets() overloads instead of the 9 expected ones.
Now that I can reproduce this, I can debug this...


was (Author: vajda):
I tried a bunch of times to build and I'm now in a situation where I reproduced 
the issue.
I see only getSynsets() overloads instead of the 9 expected ones.
Now that I can reproduce this, I can debug this...

> JCC creates the classes in non-deterministic order
> --------------------------------------------------
>
>                 Key: PYLUCENE-55
>                 URL: https://issues.apache.org/jira/browse/PYLUCENE-55
>             Project: PyLucene
>          Issue Type: Bug
>            Reporter: Andrea Sterbini
>            Priority: Major
>
> I am trying to wrap the BabelNet API code.
> The resulting module is non-deterministically not-working (once every 5 I get 
> it OK).
> This seems to be related to the order the classes are handled, because they 
> are kept in a set, which has nondeterministic order.
> By changing cpp.py at line 696 to sort the class names I get a working module.
> {code:java}
> // changed from
> for cls in todo:
> {code}
> {code:java}
> // to
> for cls in sorted(todo, key=lambda c: c.getName()):{code}
> I have been luky with this way to order the classes. Possibly a better 
> algorithm exists to fix this bug. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to