New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

strips

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

strips - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

4

package.json
{
"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,

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc