https://foro.hackplayers.com/discussion/323/cherry-ia-busqueda-a-la-heuristica-de-manhattan#latest
Create solutions trees, triping, map your data and abstract your reality.
The Library requires Java SE Development Kit 10 or High
//("state",cost,representation)
var origin = new Node("A", 0.0,new Integer[]{0,0,0,0});
//(root,objective,name,representation)
var tree = new Tree(origin, "N", " TEST",new Integer[]{0,0,0,0});
//Last in first out, list!
var list = new Lifo<Node>();
- Daniel Rosillo - Initial work -
This project is licensed under the MIT License - see the LICENSE.md file for details.