bupticybee / TexasSolver

🚀 A very efficient Texas Holdem GTO solver :spades::hearts::clubs::diamonds:
https://bupticybee.github.io/texassolver_page
GNU Affero General Public License v3.0
1.65k stars 295 forks source link

allin threshold #154

Closed nguyenviettuan96 closed 1 year ago

nguyenviettuan96 commented 1 year ago

Could u let me know what is allin threshold , use_isomorphism and dumps_round please ? Thank you

bupticybee commented 1 year ago

Allin threshold means after how many percent of pot, the tree building algorithm would turn any bet/raise exceeds that percent of pot into an allin.

use_isomorphism is a optimization option, if on, the solver would run faster in most cases.

dumps_round means how many round would you want to save in the dump json file. Normally 1~2 is enough, set to 3 could cause slow dump.

Hope that helps.

nguyenviettuan96 commented 1 year ago

"All-in threshold means after how many percent of pot" I think it is how many percent of stack, the bet will be an all-in because an all-in is depend on the stack. For example, if the stack is 100bb but the bet is 90bb, so 90/100 > allin_thres, the bet should be an all-in. Is that right? Thank you

maosatgithub commented 1 year ago

Please have a look at #146, I explained details there.

nguyenviettuan96 commented 1 year ago

thank you very much