Git Product home page Git Product logo

huntwj / a-star-for-async-data Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 3.0 46 KB

The goal of this package is to provide a flexible implementation of the A* search algorithm that allows for asynchronous data sources. Instead of requiring the entire graph to be in memory or even that graph data be immediately returned, we can search on a graph while allowing data to trickle in however slow it may be.

JavaScript 0.45% TypeScript 99.55%

a-star-for-async-data's People

Contributors

huntwj avatar

Stargazers

 avatar

Watchers

 avatar  avatar

a-star-for-async-data's Issues

Missing tests for heuristic search

Currently all tests use a zero-heuristic and mimic the Dijkstra algorithm. We need tests that add a heuristic component.

  • Ensure path is correct.
  • Ensure "good" nodes are visited.
  • Ensure "bad" nodes are not visited.

Current implementation forces heuristic decision at instantiation.

This would be fine if we only supported node-to-node navigation. But since we also allow for a goalFunc on a per-search basis, the heuristic needs to be customizable per search as well.

When the goalFunc is not a func, it should be passed to the h func as a second parameter?

var searchEngine = new Astar({
    // establish callbacks
});
.
.
searchEngine.findPath(start, goalFunc, hFunc).then(function (path) {...});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.