Loading...
Searching...
No Matches
RigidBodyPlanningWithIntegrationAndControls.cpp
63 void operator()(const ob::State *state, const oc::Control *control, std::valarray<double> &dstate) const
98 EulerIntegrator(const ob::StateSpace *space, double timeStep) : space_(space), timeStep_(timeStep), ode_(space)
102 void propagate(const ob::State *start, const oc::Control *control, const double duration, ob::State *result) const
153 // return a value that is always true but uses the two variables we define, so we avoid compiler warnings
162 DemoControlSpace(const ob::StateSpacePtr &stateSpace) : oc::RealVectorControlSpace(stateSpace, 2)
176 void propagate(const ob::State *state, const oc::Control* control, const double duration, ob::State *result) const override
The lower and upper bounds for an Rn space.
Definition RealVectorBounds.h:48
Representation of a space in which planning can be performed. Topology specific sampling,...
Definition StateSpace.h:71
virtual void enforceBounds(State *state) const =0
Bring the state within the bounds of the state space. For unbounded spaces this function can be a no-...
virtual void copyState(State *destination, const State *source) const =0
Copy a state to another. The memory of source and destination should NOT overlap.
A control space representing Rn.
Definition RealVectorControlSpace.h:62
Create the set of classes typically needed to solve a control problem.
Definition SimpleSetup.h:63
Space information containing necessary information for planning with controls. setup() needs to be ca...
Definition SpaceInformation.h:71
Model the effect of controls on system states.
Definition StatePropagator.h:62
virtual void propagate(const base::State *state, const Control *control, double duration, base::State *result) const =0
Propagate from a state, given a control, for some specified amount of time (the amount of time can al...
This namespace contains sampling based planning routines shared by both planning under geometric cons...
Definition ConstrainedSpaceInformation.h:55
This namespace contains sampling based planning routines used by planning under differential constrai...
Definition Control.h:45
A class to store the exit status of Planner::solve()
Definition PlannerStatus.h:49