Radu Serban
Radu Serban
Did you by any chance only install the `openmpi-bin` package? If so, you also need `libopenmpi-dev`.
Could you please check where the OpenMPI headers and libraries are installed (I would expect them in directories under /usr/lib/x86_64-linux-gnu/openmpi/)? Are mpicxx and mpiexec in your path? Please also attach...
Odd. CMake appears to find MPI and yet MPI_FOUND must be set to false... The only thing I can suggest is trying a newer version of CMake. I use 3.22...
Could you please: 1. Make sure `mpicc` and `mpiexec` are in your path 2. Post here your CMakeError.log and CMakeOutput.log files
Are you talking about something like a joystick?
What version of GCC are you using?
Assuming you also use an appropriate version of Eigen (what is it by the way?), it's difficult to say where the problem is. A couple of suggestions: 1. compile the...
This is an issue with CMake's `install`: when used to install a directory structure with files following a certain pattern (in this case headers, i.e., *.h, *.cuh, and *.hpp) it...
Sorry, the original issue by @AFIDclan slipped through the cracks. Just looking at the code he/she posted, I see an issue where a ChBodyEasyBox is constructed requesting a collision shape...
I assume that in the version you commented as "not working" you do not get collisions, correct? That is because you create the bodies without collision shapes. See the C++...