Comparing version 0.1.0 to 0.2.0
@@ -36,2 +36,3 @@ var assert = require('assert') | ||
status: 'timeout', | ||
cost: bestNode.g, | ||
path: reconstructPath(bestNode), | ||
@@ -46,2 +47,3 @@ }; | ||
status: 'success', | ||
cost: node.g, | ||
path: reconstructPath(node), | ||
@@ -93,2 +95,3 @@ }; | ||
status: "noPath", | ||
cost: bestNode.g, | ||
path: reconstructPath(bestNode), | ||
@@ -95,0 +98,0 @@ }; |
{ | ||
"name": "a-star", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Generic synchronous A* search algorithm", | ||
@@ -13,6 +13,6 @@ "main": "index.js", | ||
"dependencies": { | ||
"Set": "~0.4.0", | ||
"heap": "~0.2.1", | ||
"dict": "~1.1.0" | ||
"Set": "^0.4.1", | ||
"dict": "^1.4.0", | ||
"heap": "^0.2.3" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10509
273
+ Addeddict@1.4.0(transitive)
- Removeddict@1.1.0(transitive)
UpdatedSet@^0.4.1
Updateddict@^1.4.0
Updatedheap@^0.2.3