To prevent spam users, you can only post on this forum after registration, which is by invitation. If you want to post on the forum, please send me a mail (h DOT m DOT w DOT verbeek AT tue DOT nl) and I'll send you an invitation in return for an account.

Error with IvM when I want to visualise the graph

wil92
edited June 2017 in - Development
I receive this error when I run the visualise() of the InductiveVisualMiner.
Unknown extension: http://localhost:3000/concept.xesext
Unknown extension: http://localhost:3000/time.xesext
Unknown extension: http://localhost:3000/org.xesext
Exception in thread "pool-1-thread-1" java.lang.UnsatisfiedLinkError: no lpsolve55 in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1122)
at org.processmining.plugins.etm.model.narytree.replayer.AbstractNAryTreeLPDelegate.<clinit>(AbstractNAryTreeLPDelegate.java:41)
at org.processmining.plugins.inductiveVisualMiner.alignment.Alignment.alignLog(Alignment.java:102)
at org.processmining.plugins.inductiveVisualMiner.alignment.AlignmentPerformance.align(AlignmentPerformance.java:42)
at org.processmining.plugins.inductiveVisualMiner.chain.Cl05Align.executeLink(Cl05Align.java:32)
at org.processmining.plugins.inductiveVisualMiner.chain.Cl05Align.executeLink(Cl05Align.java:16)
at org.processmining.plugins.inductiveVisualMiner.chain.ChainLink$1.run(ChainLink.java:94)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)

Apparent everything is ok in the application, because the graph is showed by I can't animate it. Maybe I'm wrong but I think what I doing is right.


Comments

  • This error says that the lpsolve libraries are not available to the running program.

    1) get the lpsolve directory from a ProM installation and copy it to your program's location. For instance, from C:\Users\sander\.ProM66\packages\lpsolve-5.5.1\lib.
    2) add the following command-line arguments to the Java VM: 
    -Djava.library.path=.//lib/LpSolve-lib/win64
    (and change to the location/architecture that you're targeting)
    Sander Leemans
    Assistant Processor (Lecturer) at Queensland University of Technology
    Author of the visual Miner and Inductive Miner
  • Thank a lot, because I'm develop an application with InductiveVisualMiner, I have to resolve the libraries by my self. So I downloaded in this links Ipsolve55_win_64, Ipsolve55j, and follow this tutorial to copy the libraries in the correct directory. After that, everything run fine. Hope this can help someone.


Sign In or Register to comment.