-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added --prune-score and --prune-hops to RUN
These allow you to eliminate candidate routes early on in the "run" command based on their performance compared to the current leader. For example --prune-score 22.5 --prune-hops 3 says that from the 3rd hop, begin eliminate routes which have scored under 22.5% of the current best candidate. This can significantly improve the time to calculate long runs. But if the early hops are all poor performers it can keep you from seeing a gold mine a few hops away that requires you to take a few low-profit hits first. E.g. -1-> 50cr/ton -2-> 90cr/ton -3-> 50cr/ton -4-> 50cr/ton -1-> 10cr/ton -2-> 50cr/ton -3-> 20cr/ton -4-> 900cr/ton "--prune-score 50 --prune-hops 4" would cause you to miss the second option.
- Loading branch information
Showing
5 changed files
with
130 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters