You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to reduce compile time of the main program, provide each physics class as a shared library, possible only a factory method to create it. Then Ant loads that library, gets the factory maker and creates the physics classes as usual. This replaces the PhysicsRegistry.
The cmake build system could prove helpful here, and it's strongly correlated to #33.
In order to reduce compile time of the main program, provide each physics class as a shared library, possible only a factory method to create it. Then
Ant
loads that library, gets the factory maker and creates the physics classes as usual. This replaces thePhysicsRegistry
.The
cmake
build system could prove helpful here, and it's strongly correlated to #33.Apply this scheme also to plotters and
Ant-plot
.Useful resource for
dlopen
: http://www.linuxjournal.com/article/3687 It mentions that__init
mechanism is broken. Check if that's still true.The text was updated successfully, but these errors were encountered: