Coder Social home page Coder Social logo

grilops's Introduction

grilops

NPM Version

This is a WIP port of obijywk/grilops to TypeScript.

A Grid Logic Puzzle Solver library, using Typescript and z3.

This package contains a collection of libraries and helper functions that are useful for solving and checking Nikoli-style logic puzzles using z3.

About this port

The API of this TypeScript verison is mostly consistent with the Python version, with snake_case identifiers renamed to camelCase by JS/TS conventions.

One notable difference is that the TypeScript version does not come with its own z3 context, so you have to initialize z3 and its context according to z3-solver's documentation and pass it into grilops. You can either pass the context into individual grilops functions/classes that need it, or get contextualized versions of all grilops features with this snippet:

import { init } from 'z3-solver';
import { grilops } from '../lib';

// initialize z3
const { Z3, Context } = await init();
const ctx = Context('main');

// initialize grilops
const { /* grilops exports */ } = grilops({
  z3: Z3,
  context: ctx,
});

Progress

The following modules have been ported from Python:

  • geometry
  • grids
  • symbols
  • quadTree
  • sightlines
  • shapes
  • regions
  • paths (buggy)

The follow modules are mising

  • loops

Development

Bun >=v1.1.0 is required for this project.

# 1. Clone this repository
git clone https://github.com/hlysine/grilops.git

# 2. Restore dependencies
cd grilops
bun install

# 3. Run the dev server
bun dev

# You can now develop with hot module reload

Library code is located in /lib. A test rig can be found in /src which loads the library in a browser.

grilops's People

Contributors

hlysine avatar

Watchers

 avatar

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.