-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcmu.cabal
38 lines (35 loc) · 1.54 KB
/
cmu.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Name: cmu
Version: 1.12
Maintainer: [email protected]
Cabal-Version: >= 1.8
License: GPL
License-File: license.txt
Synopsis: Unification in a Commutative Monoid
Description: The unification problem is given the problem
statement t =? t\', find a most general
substitution s such that s(t) = s(t\') modulo
the axioms of a commutative monoid.
Substitition s is more general than s\' if
there is a substitition s\" such that s\' =
s\" o s.
Category: Algebra
Build-Type: Simple
Extra-Source-Files: readme.txt ChangeLog Makefile
Library
Build-Depends: base >= 4.13 && < 5, containers >= 0.3, array
Exposed-Modules: Algebra.CommutativeMonoid.Unification
Algebra.CommutativeMonoid.LinDiophEq
Hs-Source-Dirs: src
GHC-Options:
-Wall -fno-warn-name-shadowing -fwarn-unused-imports
Executable cmu
Main-Is: Algebra/CommutativeMonoid/Main.hs
Build-Depends: base >= 4.13 && < 5, containers >= 0.3, array
Other-Modules: Algebra.CommutativeMonoid.Unification
Algebra.CommutativeMonoid.LinDiophEq
Hs-Source-Dirs: src
GHC-Options:
-Wall -fno-warn-name-shadowing -fwarn-unused-imports
Source-Repository head
Type: git
Location: git://github.com/ramsdell/cmu.git