Custom Query (122 matches)
Results (85 - 87 of 122)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#61 | fixed | opening a ticket for CoinUtils fails | somebody | stefan |
Description |
Hi, when I try to create a ticket for CoinUtils, I get error 501: Method Not Implemented POST to /cgi-bin/tracwrap.cgi/newticket not supported. Apache/2.2.0 (Fedora) Server at projects.coin-or.org Port 443 I thought it would be just temporarily, but it's for at least a week like this now. Stefan |
|||
#62 | fixed | header check in COIN_HAS_MUMPS | andreasw | stefan |
Description |
Hi, if the user tries to provide its own mumps library using --with-mumps-dir, then the configure script checks for the presence of $mumps_dir/include/dmumps_c.h. But the MUMPS_INCFLAGS are set to include $coin_mumpssrcdir/MUMPS/libseq and $coin_mumpssrcdir/MUMPS/include, where $coin_mumpssrcdir=$mumps_dir, i.e., either there is one MUMPS too much, or the above check should be for $mumps_dir/MUMPS/include/dmumps_c.h. In the latter case, --with-mumps-dir is actually the path to a directory that contains a directory MUMPS which has the MUMPS source. Best, Stefan |
|||
#64 | fixed | improve capability to use precompiled MUMPS library | andreasw | stefan |
Description |
Hi, the current way to provide a user-compiled MUMPS library is to specify a directory via --with-mumps-dir. Then the build system assumes to find the MUMPS header files there and the libraries $mumps_dir/lib/libdmumps.$libe, $mumps_dir/lib/libpord.$libe, $mumps_dir/libseq/libmpiseq.$libe. This probably works fine if MUMPS had been compiled with the MUMPS Makefiles. However, in case that one has a mumps library (maybe as one instead of three files as produced by ThirdParty/Mumps) and header files in other locations, it seem to be extremly difficult to make Ipopt use this library. For other 3rd party codes, one can specify the link line and include flags via --with-PROJ-lib and --with-PROJ-incdir. This seem to offer more flexibility. Further, a --with-mumps-lib would allow to specify mumps-library-specific linking flags, e.g., in case that fortran runtime libraries from a different compiler are needed. Finally, having also a --enable-mumps-libcheck option would be great, since it allows to build an Ipopt library that includes a Mumps interface without having the MUMPS library actually present or linking. Thank you, Stefan |