• 0 Posts
  • 30 Comments
Joined 3 months ago
cake
Cake day: April 13th, 2024

help-circle





  • Kazumara@discuss.tchncs.detoLemmy Shitpost@lemmy.worldAutomation
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    4 days ago

    All possible moves one step from a given position sure.

    But if you then take all possible resulting positions and calculate all moves from there, and then take all possible resulting positions after that second move and calculate all possible third moves from there, and so on, then the possibilities explode so much in number that you can’t calculate them anymore. That’s the exponential part I was refering to.

    You can try and estimate them roughly, let’s say you’re somewhere in the middle of the game, there are 12 units of each side still alive. About half are pawns so we take 1.2 possible moves for them, for the others, well let’s say around 8, thats a bit much for horses and the king on average, but probably a bit low for other units. So 6 times 8 and 6 times 1.2, lets call it 55 possibilities. So the first move there are 55 possible positions, for the second you have to consider all of them and their new possibilitues so there are 55 times 55 or 3025, for the third thats 166375, then 9.15 million, 500 million, 27.6 billion, 1.5 trillion etc. That last one was only 7 moves in the future. Most games won’t be finished by then from a given position, so you either need a scoring function or you’re running out of time.


  • You don’t use it for the rule-set and allowable moves, but to score board positions.

    For a chess computer calculating all possible moves until the end of the game is not possible in the given time, because the number of potential moves grows exponentially with each further move. So you need to look at a few, and try to reject bad ones early, so that you only calculate further along promising paths.

    So you need to be able to say what is a better board position and what is a worse one. It’s complex to determine - in general - whether a position is better than another. Of course it is, otherwise everyone would just play the “good” positions, and chess would be boring like solved games e.g. Tic-Tac-Toe.

    Now to have your chess computer estimate board positions you can construct tons of rules and heuristics with expert knowledge to hopefully assign sensible values to positions. People do this. But you can also hope that there is some machine learnable patterns in the data that you can discover by feeding historical games and the information on who won into an ML model. People do this too. I think both are fair approaches in this instance.


  • I’m not sure we’re thinking of the same hypothetical here…

    I’m saying if you bring chicken to the cinema, and the staff (citizens) arrest you for it, they are beyond wrong. Because it’s oviously not illegal to bring chicken to the cinema, only against policy and therefore it would be false imprisonment.

    All they can really do is ask you to leave, and if you don’t they can call the police, or maybe, depending on the law in that jurisdiction, they could then legally detain you for said trespassing. But certainly not for breaking their policy in the first place.





  • I think those are two entirely different days, and the second day the friendly neighborhood FBI field office agents brought the printout of the first day with them to confront CoreyPilat over his vague threat towards federal officers.

    So the remote being on his kitchen countertop is just random coincidence and does not figure into the continuity between the two posts.







  • I’ve never seen any substantial evidence of a distro with outdated packages really being any more reliable than a rolling release.

    I think the fundamental issue here is that you conflate the concepts of reliablility and stability. Those are not the same. Stability in distros is a question of how much they restrict change during support cycles in order to not be a moving target for developers and system integrators. Fundamentally a rolling release can’t be stable. It can absolutely be reliable to use, but you wouldn’t use it as a basis for an embedded system you’re trying to develop.