http://possiblywrong.wordpress.com/2...air-splitting/

this is some very interesting software allowing the user to play blackjack with all the true EV's printed on the screen by combinatorial analysis.

however, the game is set to always shuffle when one deck remains, regardless of how many shoes are being used in the game. meaning that with 1 deck, it will shuffle every hand.

upon downloading the files, there are some open source files included that can be modified with notepad.

i found the portion i was looking for which was as follows:

// Reshuffle if necessary.
if (shoe->numCards < 52 || practice > 0 {
shoe->shuffle(practice);
distribution->reset();
}


and edited to it check if numCards < 15


unfortunately any edits i made to the file seemed not to have any effect on the game. even completely deleting the source files had no effect.

has anyone figured out a way or know of a way to change the penetration of his game? i've seen some things on google where someone made a patch for it for other purposes (such as european no holecard adaptations etc.)