Create solutions trees, triping, map your data and abstract your reality.
The Library requires Java SE Development Kit 10 or High
//("state",cost)
var origin = new Node("A", 0.0);
//(root,objective,name)
var tree = new Tree(origin, "N", " TEST");
//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