X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d6902e7a60955bbbfd6c902ec923ac4d723319f8..733314bae16822b734a0ed7f5c88fe08c1dc8479:/src/bindings/python/simgrid_python.cpp diff --git a/src/bindings/python/simgrid_python.cpp b/src/bindings/python/simgrid_python.cpp index 28300bc25c..e30747d232 100644 --- a/src/bindings/python/simgrid_python.cpp +++ b/src/bindings/python/simgrid_python.cpp @@ -80,7 +80,7 @@ PYBIND11_MODULE(simgrid, m) .def("load_deployment", &Engine::load_deployment, "Load a deployment file and launch the actors that it contains, see :cpp:func:`simgrid::s4u::Engine::load_deployment()`") .def("run", &Engine::run, "Run the simulation") - .def("register_function", [](Engine*, std::string name, py::object obj) { + .def("register_actor", [](Engine*, std::string name, py::object obj) { simgrid::simix::register_function(name, [obj](std::vector args) -> simgrid::simix::ActorCode { return [obj, args]() {