Charlie Vanaret
Charlie Vanaret
Ideally, we want to pass a vector of size `number_constraints` where component $i$ is whether constraint $c_i$ is linear (`L`) or nonlinear (`N`). If no such vector is passed, we...
Oh yeah! Perhaps the easiest way is to partition the constraints directly in the C interface: ```c uno_set_linear_constraints(...); uno_set_quadratic_constraints(...); uno_set_nonlinear_constraints(...); ``` For the Hessian it's perhaps not so straightforward because...
@leyffer For the `filtersqp` preset, this situation happens for the CUTEst instances `deconvc`, `dallass`, `hs103`, `pentagon`, `hs092`, `s365mod`, `hs027`, `hs062`, `cresc4`, `avion2`, `mwright`, `hs090`, and `hs089`.
Hi, Thanks a lot for your time! Yes, I'm calling `find_library` in my CMake for blas and lapack (these are required by the MA57 library). I need the MA57 symbols...
@amontoison the MA57 symbols that Uno needs are: ``` ma57id_ ma57ad_ ma57bd_ ma57cd_ ma57dd_ ``` I didn't understand the second part of your question, I need to do some research...
@amontoison can't you simply use `cmake -Dma57=path_to_libhsl.so ..`?
Absolutely, I need to edit my CMake file.
> @cvanaret Is it normal that `Uno` requires `MPI`? @amontoison Hey Alexis. Uno requires MPI only when parallel MUMPS is being linked.
@amontoison that's a very good question. The MUMPS team suggested I test the existence of the dummy library `libmpiseq.a`: if it exists, assume MUMPS was compiled in sequential mode, otherwise...
@amontoison is there a quick fix I can use in my CMake or FindMUMPS.cmake to help?