-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMath.lhs
44 lines (43 loc) · 1.71 KB
/
Math.lhs
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
39
40
41
42
43
>{-# LANGUAGE Safe #-}
>{-# OPTIONS_HADDOCK not-home #-}
>-- |
>-- Module: Math
>-- Description: CIFL math libraries
>-- Copyright: (c) Esa Pulkkinen, 2018
>-- Maintainer: [email protected]
>-- Stability: experimental
>-- Portability: POSIX
>--
>-- ![CIFL math libraries](https://esapulkkinen.github.io/cifl-math-library/logo2.svg)
>--
>-- Haskell libraries containing graphs, vector spaces, matrices,
>-- real numbers.
>--
>-- Haskell libraries for conversion of graphs to XML and DOT format
>--
>-- See Github page at <https://github.com/esapulkkinen/cifl-math-library>.
>-- See documentation at <https://esapulkkinen.github.io/cifl-math-library/>.
>--
>-- <https://esapulkkinen.github.io/cifl-math-library/dependencies-Tools.pdf Tools dependencies>
>--
>-- <https://esapulkkinen.github.io/cifl-math-library/dependencies-Matrix.pdf Matrix dependencies>
>--
>-- <https://esapulkkinen.github.io/cifl-math-library/dependencies-Graph.pdf Graph dependencies>
>--
>-- <https://esapulkkinen.github.io/cifl-math-library/dependencies-Number.pdf Number dependencies>
>--
>-- <https://esapulkkinen.github.io/cifl-math-library/external-deps.pdf External dependencies>
>--
>-- <https://github.com/esapulkkinen/cifl-math-library/blob/master/COPYRIGHT COPYRIGHT>.
>-- <https://esapulkkinen.github.io/cifl-math-library/bibliography.html Bibliography>
>--
>module Math (
> module Math.Graph,
> module Math.Matrix,
> module Math.Number,
> module Math.Tools
> ) where
>import safe Math.Graph
>import safe Math.Matrix
>import safe Math.Number
>import safe Math.Tools