Custom naming for acados_solver.pxd

Hi,

I am using acados with the python interface and managed to get multiple solvers running on different threads within the same virtual env by giving each solver a unique identifier. However the build process runs into errors when performed at the same time. I noticed that within the c_generated_code folder, there is a file called acados_solver.pxd which is not uniquely named. I was wondering if there is a way to modify the file naming to deconflict the build process from the python interface? or perhaps modifying one of the files?

Thanks
Nicodemus

Are you using the cython interface of the acados solver? If not, the .pxd files are not needed and a quick fix should be to comment these two lines

Thinking about how to properly fix this in this PR

Hi Katrin,

No I am not using the Cython interface. Okay let me give this a try.

Thanks