This commit is contained in:
Mylloon 2023-02-22 10:52:30 +01:00
parent e6742d54a0
commit 155b81fa0e
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 2 additions and 3 deletions

View file

@ -100,8 +100,7 @@ void sok_board_t::load(char *_file) {
}
bool is_in_history(Node current, std::vector<Node> history) {
//printf("Taille history : %d\n", history.size());
// printf("Taille history : %d\n", history.size());
for (auto &noeud : history) {

View file

@ -32,7 +32,7 @@ int main(int _ac, char **_av) {
std::cout << "Solution : " << result.path << "\n";
}
//result.state.print_board();
// result.state.print_board();
return 0;
}