Comparing version 0.0.5 to 0.0.6
{ | ||
"name": "strips", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Basic AI planning with STRIPS and PDDL.", | ||
@@ -46,4 +46,4 @@ "author": { | ||
], | ||
"_id": "strips@0.0.5", | ||
"_id": "strips@0.0.6", | ||
"_from": "strips" | ||
} |
@@ -101,3 +101,3 @@ AI Planning with STRIPS | ||
By default, strips uses baseN to calculate all possible parameter values for actions. Set this property to true to use permutationCombination instead. This is faster, but may not find all possible solutions. | ||
Defaults to true, which uses permutationCombination to calculate possible parameter values for actions. Set this property to false to use baseN instead. Using baseN is slower, but will allow strips to utilize all possible solutions. Changing this setting is only necessary if you are unable to find a solution plan using the default setting. | ||
@@ -104,0 +104,0 @@ #### strips.verbose |
@@ -16,4 +16,4 @@ var fs = require('fs'); | ||
StripsManager = { | ||
// Set to true to use permutationCombination() instead of baseN() for parameter values. It will be faster, but might miss some solutions. | ||
fast: false, | ||
// Set to false to use baseN() instead of permutationCombination() for parameter values. It will be slower, but will utilize all possible solutions. | ||
fast: true, | ||
// Set to true to display status information on the console while searching for a solution. | ||
@@ -20,0 +20,0 @@ verbose: false, |
86883