Boost is a dependency of SoPlex. How did you install SoPlex and do you have multiple versions installed?
The way this should work is this:
1) You install SoPlex from source.
2) While building SoPlex, its CMake scripts locate Boost on your system.
3) During the install step of SoPlex, its CMake scripts create a CMake package - a set of CMake scripts that contain all file locations necessary to include SoPlex. This package should have the path to Boost.
4) In the Fast Downward build step, we locate the CMake package of SoPlex and add a dependency to it. This should inherit all the dependencies (including boost) with the correct paths.
Only step 4 is under our control. If there is an error in steps 1-3, this is likely a broken SoPlex installation or a environment variable that is pointing to the wrong installation.
|