Skip to content

Commit 15e4915

Browse files
authored
Merge branch 'ompl:main' into planner/aorrtc
2 parents 0e3a04f + 401ed93 commit 15e4915

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.github/workflows/wheels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
merge-multiple: true
9090

9191
- name: Publish to PyPI
92-
uses: pypa/gh-action-pypi-publish@v1.12.4
92+
uses: pypa/gh-action-pypi-publish@v1.13.0
9393
with:
9494
packages: wheelhouse/*.whl
9595
env:

scripts/docker/plannerarena.Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
FROM rocker/shiny-verse:4.0.3
1+
FROM rocker/shiny-verse:4.5.1
22
RUN apt-get update && \
33
apt-get install -y libv8-dev libjpeg-dev
44
RUN install2.r --error --deps TRUE \
5+
shiny \
56
shinyjs \
67
V8 \
7-
pool \
8+
dplyr \
9+
dbplyr \
10+
tidyr \
11+
ggplot2 \
812
Hmisc \
913
RSQLite \
1014
markdown && \

scripts/plannerarena/plannerarena

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env Rscript
22

3-
packages <- c('shiny', 'shinyjs', 'V8', 'dplyr', 'dbplyr', 'pool', 'tidyr', 'ggplot2', 'Hmisc', 'RSQLite', 'markdown')
3+
packages <- c('shiny', 'shinyjs', 'V8', 'dplyr', 'dbplyr', 'tidyr', 'ggplot2', 'Hmisc', 'RSQLite', 'markdown')
44
missing.packages <- setdiff(packages, rownames(installed.packages()))
55
if (length(missing.packages) > 0) {
66
cat(c('The following packages will be installed:\n\t', missing.packages, '\n'))

scripts/plannerarena/server.R

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434

3535
# Author: Mark Moll
3636

37-
library(pool)
3837
library(dplyr, warn.conflicts = FALSE)
3938
library(tidyr)
4039
library(ggplot2)
4140
library(rlang)
4241
library(Hmisc)
42+
library(DBI)
4343

4444
default_database <- "www/benchmark.db"
4545

@@ -202,7 +202,7 @@ shinyServer(function(input, output, session) {
202202
# case 3
203203
database <- paste(sessions_folder, query$user, query$job, sep = "/")
204204
if (file.exists(database)) {
205-
con <- dbPool(RSQLite::SQLite(), dbname = database)
205+
con <- dbConnect(RSQLite::SQLite(), dbname = database)
206206
# benchmark job may not yet be finished so check that "experiments"
207207
# table exists.
208208
if ("experiments" %in% DBI::dbListTables(con)) {
@@ -882,4 +882,8 @@ shinyServer(function(input, output, session) {
882882
tabPanel("Planner Configurations", tableOutput("planner_configs"))
883883
)
884884
})
885+
886+
session$onSessionEnded(function() {
887+
dbDisconnect(con())
888+
})
885889
})

src/ompl/geometric/planners/lazyinformedtrees/BLITstar.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ namespace ompl
101101
ompl::base::PlannerStatus
102102
solve(const ompl::base::PlannerTerminationCondition &terminationCondition) override;
103103

104-
/** \brief Operate + . */
105-
ompl::base::Cost costCombine(ompl::base::Cost c1, ompl::base::Cost c2);
106104
/** \brief Get the planner data. */
107105
void getPlannerData(base::PlannerData &data) const override;
108106

@@ -136,7 +134,6 @@ namespace ompl
136134
/** \brief Get the maximum number of goals BLIT* will sample from sampleable goal regions. */
137135
unsigned int getMaxNumberOfGoals() const;
138136

139-
void runTime();
140137
/**\brief Above references inherit from BLIT*. */
141138

142139
/** \brief Perform sparse/compelete collision detection. */

0 commit comments

Comments
 (0)