- Jul 28, 2023
-
-
Florent Lamiraux authored
-
- Jul 27, 2023
-
-
pre-commit-ci[bot] authored
for more information, see https://pre-commit.ci
-
Florent Lamiraux authored
Instead of writing in the terminal. Also test that there are constraints before writing them.
-
- Jul 19, 2023
-
-
pre-commit-ci[bot] authored
for more information, see https://pre-commit.ci
-
- Jul 17, 2023
-
-
Florent Lamiraux authored
-
- May 19, 2023
-
-
Florent Lamiraux authored
-
- Mar 14, 2023
-
-
pre-commit-ci[bot] authored
for more information, see https://pre-commit.ci
-
Florent Lamiraux authored
-
- Feb 20, 2023
-
-
Florent Lamiraux authored
-
- Nov 21, 2022
-
-
pre-commit-ci[bot] authored
for more information, see https://pre-commit.ci
-
- Nov 10, 2022
-
-
yann_dm authored
-
- Nov 04, 2022
-
-
Guilhem Saurel authored
-
- Jul 02, 2022
-
-
Toefinder authored
The default timeout for innerPlanner is a positive value. However, if the user specifically sets it to be 0, the timeout will not be set and hence timeout will not be used to stop innerPlanner (default timeout in PathPlanner is infinity).
-
Toefinder authored
buildOptProblem should allow the case when there is no waypoint to be computed (only 1 loop transition from init config to the goal). PathPlanner::tryConnectInitAndGoals() should be called when the goal configuration is given.
-
- Jun 28, 2022
-
-
Le Quang Anh authored
The configSolved() method is redundant. Checks are added for the case where the final configuration computed has been reached but the goal is deemed not reached by the path planner. Some other small redundancies are also removed.
-
- Jun 22, 2022
-
-
Le Quang Anh authored
Note that we need to set it **after** the problem's path projector has been initialized.
-
- Jun 08, 2022
-
-
pre-commit-ci[bot] authored
for more information, see https://pre-commit.ci
-
Le Quang Anh authored
Path projectors are defined in core::ProblemSolver and overloaded in manipulation::ProblemSolver. Formerly, the overloaded method checked that the steering method was of type manipulation::SteeringMethod and created the path projector with the inner steering of the latter. This commit modifies this behavior since calling idl method hpp::corbaserver::Problem::createPathPlanner with a core_idl::Problem instance as input fails when the problem solver is of type manipulation::ProblemSolver.
-
- Jun 07, 2022
-
-
Le Quang Anh authored
-
- Jun 01, 2022
-
-
Le Quang Anh authored
Declaring a vector without explicitly initializing the values to 0 seems to (sometimes) have strange behavior. This has been fixed. Some comments are added to explain buildOptimizationProblem.
-
- May 31, 2022
-
-
Guilhem Saurel authored
-
- May 30, 2022
-
-
Le Quang Anh authored
Previously, when the inStatePlanner fails to compute path between two configurations on the same leaf, the roadmap generated is not added to the main roadmap of StatesPathFinder. Now it is added so that the roadmap gets expanded whenever inStatePlanner is used. The good side effect is fairer comparison between different algorithms when comparing by the number of nodes in the roadmap.
-
- May 25, 2022
-
-
Le Quang Anh authored
Clearer logic flows for SolveOptimizationProblem. Also, save the longest sequence when we need to reset solution due to exceeding the maximum fails.
-
- May 23, 2022
-
-
Le Quang Anh authored
Previously, we handled this case when goal is defined as a goal configuration. However, this case may still occur when goal is defined as a set of constraints. Moreover, the previous method does not store the loop transition to the list of solutions, making it difficult to re-try later on.
-
- May 20, 2022
-
-
Le Quang Anh authored
-
- May 13, 2022
-
-
Le Quang Anh authored
-
- Apr 21, 2022
-
-
Florent Lamiraux authored
-
- Apr 20, 2022
-
-
Le Quang Anh authored
-
- Apr 19, 2022
-
-
Guilhem Saurel authored
-
- Apr 15, 2022
-
-
Florent Lamiraux authored
-
Florent Lamiraux authored
"Graph-SteeringMethodStraight" and "Graph-Straight" refer to the same steering method.
-
Florent Lamiraux authored
when robot contact surfaces are not on a freeflying object.
-
- Apr 12, 2022
-
-
Le Quang Anh authored
-
- Apr 04, 2022
-
-
Le Quang Anh authored
-
Le Quang Anh authored
The graph has loop edge for every state (node), which can be used to connect init and goal config directly if they are both in the same state.
-
- Mar 31, 2022
-
-
Le Quang Anh authored
These errors are shown when compiled in debug mode.
-
- Mar 30, 2022
-
-
Le Quang Anh authored
Information about all the nodes in the constraint graph would be useful for debugging, eg when checking if the constraint graph is properly constructed.
-
Le Quang Anh authored
Previously, there are multiple versions of the same function, to cater for two cases: when goal is defined as a configuration, and when when goal is defined as a set of constraints. This duplication is not desirable, as we need to make changes in multiple places if we want to make a small change in a function. This commit removes the duplication by merging the functions together and adding checks within the new functions to cater for the two cases. Some modifications are needed for analyseOptimizationProblem when goal is given as a configuration. So far we have made a few, but there may be more.
-
- Mar 28, 2022
-
-
Le Quang Anh authored
BUG: if a certain transition list succeeds to give a configuration list for the first time, and fails for the second time, a new transition list will be considered, but skipColAnalysis is NOT reset. This is now fixed by using the direct comparison with nTryConfigList_ instead of using an additional data member.
-
Le Quang Anh authored
Even though bad solve statuses are usual because sometimes it is hard to solve for the waypoint, there could be cases where it is impossible to solve for a waypoint for a certain transition list (although we try to ensure that the solver should have a positive probability of solving it, by analysing the optimization problem in an earlier step). Adding a threshold to it would ensure that the solving step does not take an exponential time to decide that a transition list is not suitable.
-