plotting of graphs, a star search, greedy best search and bfs and dfs lib
import search.breath_first_search as bfs
import search.depth_first_search as dfs
import search.a_star_search as a_star
import search.greedy_best_first_search as gbfs
# a star search
a = a_star.Node(parameters)
# same applys for others
# a is a node
a.n = [other nodes]
# Ex
bfs.bfs(a, h)
python <name>.py