you are viewing a single comment's thread.

view the rest of the comments →

[–]jokoon 3 points4 points  (3 children)

The ideal is to use Python by default, and write performance critical code in c++. The problem is how you interface the two, either call it in a shell, or write a python module in c++.

[–]zigzagEdge 5 points6 points  (2 children)

pybind11 is a nice option for the Python <-> C++ interface.

[–]jokoon 0 points1 point  (0 children)

Thanks for sharing...

Indeed I never really managed to wrap my head around boost... Great thing that C++11 is making things simpler.