We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 716291f commit b93f7f7Copy full SHA for b93f7f7
1 file changed
src/roboptim/core/__init__.py
@@ -13,13 +13,7 @@
13
# plugin cannot access local symbols of roboptim-core. This is not ideal, but
14
# at least plugins do not need to link with roboptim-core themselves. A better
15
# solution may be implemented later on.
16
-# As for the Boost dependencies, we need them as well since we use an
17
-# OptimizationLogger (header only) which depends on extra Boost libraries.
18
-# TODO: avoid these Boost dependencies...
19
from ctypes import CDLL, RTLD_GLOBAL
20
-CDLL("libboost_date_time.so", RTLD_GLOBAL)
21
-CDLL("libboost_system.so", RTLD_GLOBAL)
22
-CDLL("libboost_filesystem.so", RTLD_GLOBAL)
23
CDLL("libroboptim-core.so", RTLD_GLOBAL)
24
25
from .wrap import *
0 commit comments