Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 1.24 KB

README.md

File metadata and controls

27 lines (23 loc) · 1.24 KB

GSolver

Graph problem solver in JavaScript

  • For solving the searching problem.

Feature:

Using:

  • Main idea:
    • A problem is described by 3 components: http://artint.info/html/ArtInt_201.html
      • States: the state of problem. The begining state is the init state.
      • Action: the action which can impact on a state, the consequence is an other state
      • Goal: the target states to find.
      • Searching problem: Find a path from init state to a goal on a graph.
      • Rule: We add this concept as a rule for serveral problems types.