Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional Termination Criteria #12

Open
vvhof opened this issue Mar 9, 2015 · 1 comment
Open

Add additional Termination Criteria #12

vvhof opened this issue Mar 9, 2015 · 1 comment

Comments

@vvhof
Copy link
Member

vvhof commented Mar 9, 2015

Currently, we can only terminate, if an additional solution is not found in a defined amount of instructions executed.

We should improve this to automatically terminate upon the algorithm reaching a predefined search-depths.

@timmaj
Copy link

timmaj commented Mar 9, 2015

Since iterative deepening is implemented, this should be an easy thing to implement. One additon configuration variable is needed. Then, when iteration until the predefined depths is finished and would restart check if iterativeDeepeningStartingDepth + iterativeDeepeningDeepnessIncrement is greater than the treshold and terminate if so. The more complicated option would be to exactly finish the treshold, i.e. if iterativeDeepeningStartingDepth + iterativeDeepeningDeepnessIncrement was less than the treshold but adding iterativeDeepeningDeepnessIncrement another time makes it to great, just add as much as to reach the treshold for the final run. Again, however, nothing needs to be changed to how Muggl works, it will be a couple of lines added to the core only.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants