Skip to content

Commit

Permalink
issue-210 updated docs for replanning
Browse files Browse the repository at this point in the history
  • Loading branch information
zmknox committed Nov 8, 2019
1 parent 8e51da1 commit 1d71de6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 7 additions & 1 deletion docs/pages/documentation/configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ This section documents utilization of the configuration file in place of CLI opt

### plannerAlgorithm
* The algorithm to use when the planner generates tests
* Supported algorithms: `forwardStateSpaceSearchHeuristic`
* Supported algorithms: `actionTree`, `forwardStateSpaceSearchHeuristic`
* Example: `algorithm: forwardStateSpaceSearchHeuristic`

### plannerTestLength
Expand All @@ -199,6 +199,12 @@ This section documents utilization of the configuration file in place of CLI opt
* The replanning step will most likely greatly reduce the number of generated tests
* Example: `plannerTestLength: 75`

### replanningSeed
* Seed provided to the replanning algorithm's random number generator
* Using seeded random numbers allows for consisten plans between generation runs
* If replanning is not enabled with `plannerTestLength`, this value has no effect
* Example: `replanningSeed: 867.5309`

### debug
* Adds node debugging flag to spawned child processes
* Default is `false`
Expand Down
1 change: 0 additions & 1 deletion lib/planner/search-algorithms/offline-replanning.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ module.exports = offlineReplanning = {
_savedPlans: null,
_existingPlans: null,
_discoveredActions: null,
_actionsNotInAnyPlan: new Set(),
_algorithm: null,
_randomSeed: 25,
* replan(existingPlans, discoveredActions, algorithm, options) {
Expand Down

0 comments on commit 1d71de6

Please sign in to comment.