Saleem Ansari

Results 23 comments of Saleem Ansari

AFAIK, in Apriori algorithm, the order doesn't matter. So the behavior is correct. It represents a basket of items, and the order in which they were put in the basket...

What error do you observe ? Were you able to solve this issue? Do you have a small reproducible setup to investigate this issue?

"Segmentation fault (core dumped)" usually means that the process crashed due to SIGSEGV. In case of Python, it could be that * Interpreter crashed ( very unlikely ) * or...

@DeckardSG I have the same versions for both `jpype` and Java. To gain more insight, can you share the output of following command in a pastebin: ``` $ python -v...

@rubimazaki It is unlikely for me to find the root cause of this Seg Fault, because I only have Fedora 25 machine -- and it works for me. Could you...

@mansoorfayyaz This issue looks specific to PyCharm setup. Can you create a python script that reproduces the same issue from command line ?

In the following snippet, at which line does the process finish? ``` import jpype #jpype.startJVM("C:\Program Files (x86)\Java\jre1.8.0_121\bin\client\jvm.dll",'-ea' ) jpype.startJVM(jpype.getDefaultJVMPath(), "-ea") util = jpype.JPackage("java.util") al = util.ArrayList() al.add(1) al.add(2) print(al.size()) jpype.shutdownJVM()...

@Ninjakannon If this PR is still applicable, please resolve the conflicts and update. Also please add a test case so this can be detected in future.

@Ninjakannon Oh right there are no conflicts. Perhaps I mistook with other PRs in this project. What would be best way to replicate the issue, for which this PR is...