summaryrefslogtreecommitdiff
path: root/lib/Data/Packed/Tensor.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Data/Packed/Tensor.hs')
-rw-r--r--lib/Data/Packed/Tensor.hs31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/Data/Packed/Tensor.hs b/lib/Data/Packed/Tensor.hs
deleted file mode 100644
index 27747ac..0000000
--- a/lib/Data/Packed/Tensor.hs
+++ /dev/null
@@ -1,31 +0,0 @@
1-----------------------------------------------------------------------------
2-- |
3-- Module : Data.Packed.Tensor
4-- Copyright : (c) Alberto Ruiz 2007
5-- License : GPL-style
6--
7-- Maintainer : Alberto Ruiz <aruiz@um.es>
8-- Stability : experimental
9-- Portability : portable
10--
11-- Basic tensor operations
12--
13-----------------------------------------------------------------------------
14
15module Data.Packed.Tensor (
16 -- * Construction
17 Tensor, tensor, scalar,
18 -- * Manipulation
19 IdxName, IdxType(..), IdxDesc(..), structure, dims, coords, parts,
20 tridx, withIdx, raise,
21 -- * Operations
22 addT, mulT,
23 -- * Exterior Algebra
24 wedge, dual, leviCivita, innerLevi, innerAT, niceAS,
25 -- * Misc
26 liftTensor, liftTensor2
27) where
28
29
30import Data.Packed.Internal.Tensor
31