I install the MUMPS jl module though the Pkg.add("MUMPS"), and the MUMPS4.1
and Metis are installed through the Ubuntu(13.10) software-Center. I find
that the relevant files ( libxmumps.a (x=c,d,s,z) ,libmumps_common.a,
libxmumps.so (x=c,d,s,z) and libmumps_common.so) are placed in the path
\usr\lib.
then I run the testing:
*using MUMPS*
*a=speye(2)*
*factorMUMPS(a)*
get error info:
*error compiling factorMUMPS: error compiling factorMUMPS: could not load
module ../lib/MUMPS: ../lib/MUMPS: *
*while loading In[1], in expression starting on line 3 *
In the definition of the factorMUMPS(), he calls such function:
*ccall( (:factor_mumps_, "../lib/MUMPS"),*
* Int64, ( Ptr{Int64}, Ptr{Int64},
Ptr{Float64}, Ptr{Int64}, Ptr{Int64}, Ptr{Int64}),*
* &n, &sym, A.nzval, A.rowval, A.colptr, mumpsstat);*
so I think the lib path should change, then what I can I do to make it work?