Example #1
0
void Path::forward() {
    if (!eop()) {
        _index++;

        _currentWaypoint = _nextWaypoint;
        _nextWaypoint = _waypoints.at(_index);
    }
}
Example #2
0
	enode & operator()(eop_type type, cfg::op_id id)
	{
		ops.push_back(eop(type, id));
		return *this;
	}
Example #3
0
	jump_sentinel(cfg::vertex_descriptor sentinel, eop const & value = eop())
		: sentinel(sentinel), value(value)
	{
	}