Giter VIP home page Giter VIP logo

astragalus's Introduction

astragalus's People

Contributors

lonnen avatar

Watchers

 avatar  avatar

astragalus's Issues

LON could be less ambiguous or at least match the game

Lonnen-Otis Notation (LON) is a trivial encoding of the game boards into an array. The game boards accepts all three of the following as different, valid states:

| 0 | 2 | 0 |
| 0 | 3 | 0 |
| 0 | 0 | 0 |
| 0 | 2 | 0 |
| 0 | 0 | 0 |
| 0 | 3 | 0 |
| 0 | 0 | 0 |
| 0 | 2 | 0 |
| 0 | 3 | 0 |

While they all sum the same, only [1] would appear in the game Cult of the Lamb (CotL) because 0's are always pushed to the end of the row.

For the sake of memory over many positions, and writing an AI to leverage that, it would be an improvement if we always reduced these to a canonical form. Perhaps:

| 0 | 3 | 0 |
| 0 | 2 | 0 |
| 0 | 0 | 0 |

Where each column is sorted largest to smallest. This makes it easier to detect 0s (legal moves), and ensures that all 4 of these boards are treated as equivalent.

I think astragalus should accept any board state that might appear in CotL, but store and output a canonical form. This wouldn't change any output advice since a good or bad move is agnostic to the ordering or items in the same column.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.