Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Performance #24

Closed
wants to merge 6 commits into from
Closed

Performance #24

wants to merge 6 commits into from

Conversation

TiTi
Copy link
Contributor

@TiTi TiTi commented Jun 3, 2014

Use Performance API if available + optimize astar.search by moving pathTo function outside

TiTi added 6 commits June 4, 2014 00:22
- Extract grid specificities into the Graph function
(thus replace `grid` parameter to a `graph`object)
- Regroup heuristics functions under astar.heuristics
- Update tests, benchmark & demo
- Added a specific test to demonstrate non-grid layout usage with a gps
heuristic
- Only use one var when possible
- Define one var on each line (child1N)
- Avoid comments on 2 lines for a few chars
- Remove unecessary empty lines
- Optimize with .join rather than lots of string concatenations
- Add comment to specify that .toString() only work in grid layout mode
Performance API is more precise
https://developer.mozilla.org/en-US/docs/Web/API/Performance

http://updates.html5rocks.com/2012/08/When-milliseconds-are-not-enough-performance-now

Note: I did not switch new Date().getTime() to Date.now() because it
only works with IE>8.
But this might be interesting because Date.now() is faster than new
Date().getTime() (no object creation).

http://stackoverflow.com/questions/12517359/performance-date-now-vs-date-gettime
This small optimization avoid to redefine the pathTo function in memory
each time astar.search() is called.
@bgrins
Copy link
Owner

bgrins commented Jun 15, 2014

Looks like this includes commits from #21 - you will need to rebase this - you may consider just opening a new PR based off of master

@bgrins bgrins mentioned this pull request Jun 15, 2014
@TiTi
Copy link
Contributor Author

TiTi commented Jun 15, 2014

Will do another PR

@TiTi TiTi closed this Jun 15, 2014
@TiTi TiTi deleted the performance branch June 15, 2014 21:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants