Logician

master

Logic programming in Swift
mdiep/Logician

Logician

SPM Compatible

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.

Installation

Logician is compatible with Swift Package Manager. Add the following line into your Package.swift dependencies: .package(url: "https://github.com/mdiep/Logician.git", .branch("master")

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 kanren-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 write a complex solver.

Description

  • Swift Tools 4.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Wed Dec 27 2023 22:59:01 GMT-1000 (Hawaii-Aleutian Standard Time)