Terry Sanders

Results 27 comments of Terry Sanders

The console version loads the files here https://github.com/bupticybee/TexasSolver/tree/master/resources/compairer and parses the contents. This is for the compairer. That is what takes the time. The gui version compiled from the master...

The problem is with this line: ` float gap = rule.get_commit(player) - rule.get_commit(next_player);` Since next_player either raised, bet or checked gap will either be negative or zero. The line needs...

The effective stack is 1000 and if OOP raises to 575 then they will be committing 665 of their chips to the pot (575 + 90). This is 0.665 of...

I've looked further at this and the issue appears to be the effective stack setting. The effective stack is set here: https://github.com/bupticybee/TexasSolver/blob/master/src/tools/Rule.cpp#L11 ` this->initial_effective_stack = stack - oop_commit;` As a...

The "RAISE X" represents the amount of chips being added to the pot. So in your example the BET 5 shows that the player is adding 5 chips to the...

> > I see, so the current implement is wrong, right? Not necessarily. As long as it is consistent in what it does it doesn't matter whether the "RAISE X"...

You might have something else controlling the wlan0 interface. Have a look to see if wpa_supplicant is running.

That doesn't doesn't always stop wpa_supplicant. If you run the following: `ps -fu root | grep wpa_supplicant` and it finds any processes then wpa_supplicant is running.

wpa_supplicant is probably being spawned by another process. The access point will fail to start as long as this is happening. An alternative to tuyota that may work better for...

How long after starting is it before the `***** Access Point has Shutdown *****` message appears? Run the following command, with your device switched on, and let me know what...