You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/csp/csp/scribblings/csp.scrbl

32 lines
797 B
Plaintext

6 years ago
#lang scribble/manual
@(require scribble/eval (for-label racket csp))
@(define my-eval (make-base-eval))
@(my-eval `(require csp))
6 years ago
@title{Constraint-satisfaction problems}
6 years ago
@author[(author+email "Matthew Butterick" "mb@mbtype.com")]
@defmodule[csp]
6 years ago
@margin-note{This package is in development. I make no commitment to maintaining the public interface documented below.}
A simple solver for constraint-satisfaction problems.
6 years ago
@section{Installation}
At the command line:
@verbatim{raco pkg install csp}
After that, you can update the package like so:
@verbatim{raco pkg update csp}
@section{License & source code}
This module is licensed under the LGPL.
Source repository at @link["http://github.com/mbutterick/csp"]{http://github.com/mbutterick/csp}. Suggestions & corrections welcome.