Programa en prolog para resolver el problema del puente y la antorcha
Lenguajes de Programacion
$ swipl # Correr prolog en el directorio
?- [file_name]. # Cargar archivo de prolog
?- test_depth_first(bridges_torch1, L). # Correr solucion Depth First
?- test_hill_climb(bridges_torch1, L). # Correr solucion Hill Climb
?- test_best_first(bridges_torch1, L). # Correr solucion Best first
1.0.0
Andres Aguilar Moya