Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
REX-D
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
perception
REX-D
Commits
74f24fd2
Commit
74f24fd2
authored
11 years ago
by
David Martínez
Browse files
Options
Downloads
Patches
Plain Diff
Updated triangle p1 without rmin. Set default simulator and planner port as auto for default.
parent
74a481e3
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
scenarios/triangle/p1/reward.dat
+1
-1
1 addition, 1 deletion
scenarios/triangle/p1/reward.dat
scenarios/triangle/p1/rexd_config.cfg
+2
-2
2 additions, 2 deletions
scenarios/triangle/p1/rexd_config.cfg
src/rexd/config_reader.cpp
+2
-2
2 additions, 2 deletions
src/rexd/config_reader.cpp
with
5 additions
and
5 deletions
scenarios/triangle/p1/reward.dat
+
1
−
1
View file @
74f24fd2
vehicleAt(73)
1.0
vehicleAt(73)
This diff is collapsed.
Click to expand it.
scenarios/triangle/p1/rexd_config.cfg
+
2
−
2
View file @
74f24fd2
...
...
@@ -17,8 +17,8 @@ exploration_known_threshold = 3
confirm_dangerous_actions
= true
use_rmax
=
tru
e
use_vmin
=
tru
e
use_rmax
=
fals
e
use_vmin
=
fals
e
rmax_reward
= 15
vmin_reward
= 0.1
...
...
This diff is collapsed.
Click to expand it.
src/rexd/config_reader.cpp
+
2
−
2
View file @
74f24fd2
...
...
@@ -37,7 +37,7 @@ bool ConfigReader::init(const std::string& config_path, const std::string& files
// simulator
(
"simulator"
,
po
::
value
<
bool
>
()
->
default_value
(
true
),
"Using simulator"
)
(
"simulator_port"
,
po
::
value
<
uint
>
()
->
default_value
(
24242
),
"Simulator port (0 for auto)"
)
(
"simulator_port"
,
po
::
value
<
uint
>
()
->
default_value
(
0
),
"Simulator port (0 for auto)"
)
(
"simulator_current_state_path"
,
po
::
value
<
std
::
string
>
()
->
default_value
(
"state_simulator.dat"
),
"Simulator current state path"
)
(
"simulator_init_state_path"
,
po
::
value
<
std
::
string
>
()
->
default_value
(
"simulated_init_state.dat"
),
"Simulator init state path"
)
...
...
@@ -85,7 +85,7 @@ bool ConfigReader::init(const std::string& config_path, const std::string& files
(
"ppddl_rules_template_path"
,
po
::
value
<
std
::
string
>
()
->
default_value
(
"template_ppddl"
),
"Template to generate ppddl rules"
)
(
"planner_path"
,
po
::
value
<
std
::
string
>
()
->
default_value
(
"./planner"
),
"Planner executable path"
)
(
"planner_port"
,
po
::
value
<
uint
>
()
->
default_value
(
2323
),
"Planner server port (0 for auto)"
)
(
"planner_port"
,
po
::
value
<
uint
>
()
->
default_value
(
0
),
"Planner server port (0 for auto)"
)
(
"planning_time"
,
po
::
value
<
uint
>
()
->
default_value
(
1000
),
"Planning time in miliseconds"
)
(
"planning_fast_time"
,
po
::
value
<
uint
>
()
->
default_value
(
500
),
"Fast planning time in miliseconds"
)
(
"planning_epsilon"
,
po
::
value
<
double
>
()
->
default_value
(
0.05
),
"Planner epsilon"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment