335g / Logician

Logic programming in Swift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logician

Logic programming in Swift

Logic Programming

Logic programming is a declarative style of programming that uses constraints to describe problems. Instead of writing a solution to the problem, you describe the characteristics of the solution and let the computer solve it for you.

Here are some example problems that are a good fit for logic programming:

  • Coloring a map/graph so adjacent regions don’t use the same color
  • Resolving dependencies in a package manager
  • Solving puzzles like sudoku, n-queens, etc.

Different logic programming implementations contain different types of constraints.

Using Logician

In order to use Logician, you need to be familiar with 3 concepts:

  1. Variable

    A variable describes an unknown value in a logic problem, much like variables in algebra. Logician variables are generic over a value type.

  2. Goal

    A goal represents some condition that should be true in the solved state. It’s currently implemented as a (State) -> Generator<State>. A goal can diverge and return multiple possible states or terminate, signaling that a constraint was violated.

    Logician provides a number of built-in goals—like ==, !=, distinct, &&, ||, all, and any—that should provide a good start in most cases.

  3. solve

    This function is the interface to Logician’s solver. Its block takes Variables to solve as input and returns Goals to solve for.

Logician is still in its early stages. Its current implementation is based on the miniKanren approach of using functions that return generators. This is likely to change in the future in order to enable optimizations.

Examples

Logician includes playgrounds with a sudoku solver and an n-queens solver that demonstrate usage of the library.

License

Logician is available under the MIT License

Learn More

The following are good resources for learning more about logic programming:

  • Logic Programming in Swift

    An explanation of how logic programming works in Swift.

  • μKanren: A Minimal Functional Core for Relational Programming (pdf) by Jason Hemann and Daniel P. Friedman

    This paper explores what forms the minimal logic programming language in Scheme. It strips away the complexity of more capable solvers to expose the core idea.

  • Kanren.swift

    Swift playgrounds with implementations of various Kanrens.

  • Hello, declarative world by @tomstuart

    A brief explanation of logic programming and a minimal language in Ruby.

  • The Reasoned Schemer by Daniel P. Friedman, William E. Byrd and Oleg Kiselyov

    An unorthodox book, in the style of The Little Schemer, that has pages of exercises that demonstrate how a kaaren-style logic programming works.

  • Constraint Processing by Rina Dechter

    An in-depth look at constraints, algorithms, and optimizations. This book explains all you need to know to right a complex solver.

About

Logic programming in Swift

License:MIT License


Languages

Language:Swift 96.5%Language:Shell 2.8%Language:Objective-C 0.7%