xo-pykalmanfilter: bugfix: track xo::ref::rp -> xo::rp
This commit is contained in:
parent
94e59d7248
commit
a9daaa3278
1 changed files with 1 additions and 2 deletions
|
|
@ -48,7 +48,6 @@ namespace xo {
|
|||
using xo::reactor::ReactorSource;
|
||||
using xo::reactor::PtrEventStore;
|
||||
using xo::reflect::SelfTagging;
|
||||
using xo::ref::rp;
|
||||
using xo::time::utc_nanos;
|
||||
using Eigen::VectorXd;
|
||||
using Eigen::VectorXi;
|
||||
|
|
@ -164,7 +163,7 @@ namespace xo {
|
|||
// ----- xo::kalman::KalmanFilterStep -----
|
||||
|
||||
py::class_<KalmanFilterStep>(m, "KalmanFilterStep")
|
||||
.def(py::init<rp<KalmanFilterState>, KalmanFilterTransition, KalmanFilterObservable, ref::rp<KalmanFilterInput>>(),
|
||||
.def(py::init<rp<KalmanFilterState>, KalmanFilterTransition, KalmanFilterObservable, rp<KalmanFilterInput>>(),
|
||||
py::arg("state"), py::arg("model"), py::arg("obs"), py::arg("input"))
|
||||
.def_property_readonly("state", &KalmanFilterStep::state)
|
||||
.def_property_readonly("model", &KalmanFilterStepBase::model)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue