The most basic minimax evaluates only end nodes, marking wins, losses and draws, and maintains these values ββup the tree to determine the values ββof intermediate nodes. In the event that the game tree is difficult to process, you need to use the cutoff depth as an additional parameter for your minimax functions. Once the depth is reached, you need to run some kind of evaluation function for incomplete states.
Most of the evaluation functions in minimax search depend on a specific area, so finding help for a specific game can be difficult. Just remember that the rating should return a certain percentage of the percentage expectation of the position that is the gain for a particular player (usually the maximum, but not when using the Negamax implementation). Any less explored game will be very similar to another, more explored. This one is very closely related to game pickups . Using only minimax and alpha beta, I think the game is changeable.
If you need to create an evaluation function for non-terminal positions, here is a little help with analyzing the stick game, with which you can decide whether it will be useful for playing dates or not.
Start looking for a way to force the outcome by looking at the final position and all the moves that may lead to that position. In a stick game, the final position is 3 or fewer sticks left on the last move. Thus, a position that immediately moves to this final position leaves 4 sticks to the opponent. Now the goal is to leave the opponent 4 sticks, no matter what, and this can be done if you leave 5, 6 or 7 sticks, and you would like to force your opponent to leave you in one of these positions. The place where your opponent should be, so that you are in 5, 6 or 7, is 8. Continue this logic, and the pattern becomes available very quickly. Always leave your opponent with a multiple of 4, and you win, everything else you lose.
This is a pretty trivial game, but the heuristic definition method is important, as it can be directly applied to your assignment. Since the last move is the first, and you can only change 1 date attribute at a time, you know that you need exactly 2 moves to win ... and so on.
Best of luck, let us know what you end up doing.