This repository was archived by the owner on Apr 13, 2024. It is now read-only.
Choosing step size in search #62
Unanswered
gannesh1996
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey!
I have the following bounds:
varbound = [[0.5, 1.5], [0, 100]]
vartype = ('real', 'int')
Now I need the tool to search between these values with a certain stepsize. In the first bound the stepsize should be 0.01 and in the second bound it should be 10 (so it will only look at 0, 10, 20, 30, 40, 50, 60, 70, 80, 90 and 100).
What is the best way to do this?
Beta Was this translation helpful? Give feedback.
All reactions