Beispiel #1
0
/**
 * @function ExtendHeuristic
 */
bool B1RRT::ExtendHeuristic() {
    int nearId;
    nearId = ranking[0][0];

    connectHeuristic( nearId, getRandomConfig() ); 
    // Get a new configuration

    return false;
}
Beispiel #2
0
/**
 * @function tryStep
 */
JG_RRT::StepResult JG_RRT::tryStep()
{
    Eigen::VectorXd qtry = getRandomConfig();
    return tryStep(qtry);
}
Beispiel #3
0
/**
 * @function connect
 * @brief
 */
bool JG_RRT::connect()
{
    Eigen::VectorXd qtry = getRandomConfig();
    return connect( qtry );
}
Beispiel #4
0
/* ********************************************************************************************* */
bool RRT::connect() {
	VectorXd qtry = getRandomConfig();
	return connect(qtry);
}
Beispiel #5
0
/* ********************************************************************************************* */
RRT::StepResult RRT::tryStep() {
	VectorXd qtry = getRandomConfig();
	return tryStep(qtry);
}