Skip to content

Commit

Permalink
v2.0.0:
Browse files Browse the repository at this point in the history
- adaptation to work with simplified virtual model
- path finding process executed from Web Worker
  • Loading branch information
julianrojas87 committed Nov 18, 2021
1 parent 31663b3 commit 5df26ff
Show file tree
Hide file tree
Showing 17 changed files with 515 additions and 745 deletions.
118 changes: 10 additions & 108 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "era-compatibility-check",
"version": "1.4.1",
"version": "2.0.0",
"description": "ERA's route compatibility check application",
"type": "module",
"scripts": {
Expand Down Expand Up @@ -29,7 +29,7 @@
"html-webpack-plugin": "^4.3.0",
"raw-loader": "^4.0.2",
"style-loader": "^1.2.1",
"undici": "^4.8.1",
"undici": "^4.10.0",
"webpack": "^4.43.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/algorithm/Compatibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function getTrackPropertyValue(t, params) {
}

export function verifyCompatibility(t, vt, store) {
const track = Utils.getTrackInfo(t.id.value, store);
const track = Utils.getTrackInfo(t.id, store);
const vehicleType = Utils.getVehicleTypeInfo(vt, store);
const report = {};

Expand Down
Loading

0 comments on commit 5df26ff

Please sign in to comment.