You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While solving the problem in missionaries.py using generic_search.py from Chapter 2, I found out that there are duplicate instances of MCState in Node::explored.
This is probably a problem where instances with the same value are not recognized as the same instance and are, therefore, duplicated in the set.
The text was updated successfully, but these errors were encountered:
While solving the problem in
![스크린샷 2023-10-31 오후 2 08 29](https://private-user-images.githubusercontent.com/3656574/279264793-4867fc8e-26d1-49cb-b916-021c8cb0d3c4.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyMTk1MDgsIm5iZiI6MTczOTIxOTIwOCwicGF0aCI6Ii8zNjU2NTc0LzI3OTI2NDc5My00ODY3ZmM4ZS0yNmQxLTQ5Y2ItYjkxNi0wMjFjOGNiMGQzYzQucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxMCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTBUMjAyNjQ4WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ZDY0MzRhZDJiOTg3OWFhMTM1YmRmM2M3YWMyZmZlOWE2M2VjZjg5MTI1Y2Q4MDk1ZTI0ODdjMjFmZDVkNDQ0NSZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.0Q0q7rVJHSYyqD7CceXQpaGCps3RFFvy79QEuHkDOZY)
missionaries.py
usinggeneric_search.py
from Chapter 2, I found out that there are duplicate instances ofMCState
inNode::explored
.This is probably a problem where instances with the same value are not recognized as the same instance and are, therefore, duplicated in the set.
The text was updated successfully, but these errors were encountered: