Update 'src/board.py'
This commit is contained in:
parent
b4eb9c22f7
commit
b7402c8e49
@ -225,7 +225,7 @@ if __name__ == '__main__':
|
|||||||
pathPos = 0
|
pathPos = 0
|
||||||
nextCheckpoint = 1
|
nextCheckpoint = 1
|
||||||
|
|
||||||
#od tad proboje
|
#od tąd podstawiony algorytm genetyczny
|
||||||
# parametry
|
# parametry
|
||||||
num_of_houses = 8 # ilość domków
|
num_of_houses = 8 # ilość domków
|
||||||
routes_num = 40 # ilość ścieżek, które będziemy generować
|
routes_num = 40 # ilość ścieżek, które będziemy generować
|
||||||
@ -254,8 +254,9 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
final_mutated_population = gen_algorithms.mutate_population(new_population_set)
|
final_mutated_population = gen_algorithms.mutate_population(new_population_set)
|
||||||
print("tutaj")
|
print("tutaj")
|
||||||
print(final_route)
|
print(final_route) # ostateczny wynik
|
||||||
print(houses_info) # tu nazwa domu i lokalizacja
|
print(final_route[2][0][0]) # żeby wyciągnąć z wyniku nazwę domu, który jest na i-tym miejscy trzeba wziąć final_route[2][0][i]
|
||||||
|
print(houses_info[final_route[2][0][0]]) # podstawiając jako argument nazwę domu z final_route dostajemy jego współrzędne x, y
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
agent_x, agent_y = astarPath[pathPos]
|
agent_x, agent_y = astarPath[pathPos]
|
||||||
|
Loading…
Reference in New Issue
Block a user