walkie / icfp2014

University of Marburg - ICFP Programming Contest 2014
2 stars 1 forks source link

Implement A* #2

Closed b-studios closed 10 years ago

b-studios commented 10 years ago

Our language now is powerful enough to get started implementing the actual AI.

I found an implementation of A* in python that does not use sets or priority queues but only lists and arrays.

I am not sure how trustworthy the source is - looks a bit shady, but we could try to reimplement this in GCC++.

b-studios commented 10 years ago

I have implemented this. Can be closed now.