Select Git revision
event_generator.cpp 1.35 KiB
#include <pybind11/pybind11.h>
#include <pybind11/pytypes.h>
#include <pybind11/stl.h>
#include <arbor/common_types.hpp>
#include <arbor/schedule.hpp>
#include "event_generator.hpp"
#include "schedule.hpp"
namespace pyarb {
void register_event_generators(pybind11::module& m) {
using namespace pybind11::literals;
pybind11::class_<event_generator_shim> event_generator(m, "event_generator");
event_generator
.def(pybind11::init<>(
[](arb::cell_local_label_type target, double weight, const schedule_shim_base& sched) {
return event_generator_shim(std::move(target), weight, sched.schedule()); }),
"target"_a, "weight"_a, "sched"_a,
"Construct an event generator with arguments:\n"
" target: The target synapse label and selection policy.\n"
" weight: The weight of events to deliver.\n"
" sched: A schedule of the events.")
.def_readwrite("target", &event_generator_shim::target,
"The target synapse (gid, local_id).")
.def_readwrite("weight", &event_generator_shim::weight,
"The weight of events to deliver.")
.def("__str__", [](const event_generator_shim&){return "<arbor.event_generator>";})
.def("__repr__", [](const event_generator_shim&){return "<arbor.event_generator>";});
}
} // namespace pyarb