JoelvanIngen / MinProg-AH

2 stars 1 forks source link

IterativeGreedy locks itself into a direction choice early in the protein chain #12

Open JoelvanIngen opened 8 months ago

JoelvanIngen commented 8 months ago

After choosing a direction for the first few nodes, the algorithm will not return to these nodes in a realistic amount of iterations. We could consider to drop the few directions considered worst by the heuristics to cut off certain directions.

If our heuristics are good enough, this should allow us to get great results because we won't even consider the worst ones.

We could consider increasing the likelyhood of a branch being cut the higher the current search depth is.

JoelvanIngen commented 8 months ago

Idea: Add confidence value and confidence threshold based on heuristic values

This should let the algorithm freely investigate potential good moves, but quickly drop bad ones.