|
From: Akshay S. <ak...@us...> - 2013-02-04 06:38:51
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "matlisp".
The branch, tensor has been updated
via 8c2e30aafd1d5481e28d62cbf5382687fe0b4fe7 (commit)
from bff689247f6e345a4ff7505a2973d70a3e30acea (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8c2e30aafd1d5481e28d62cbf5382687fe0b4fe7
Author: Akshay Srinivasan <aks...@gm...>
Date: Sun Feb 3 22:31:44 2013 -0800
Removed type declarations in store-indexing. CMUCL does not seem to like them :)
diff --git a/src/base/standard-tensor.lisp b/src/base/standard-tensor.lisp
index 815164d..81c33c6 100644
--- a/src/base/standard-tensor.lisp
+++ b/src/base/standard-tensor.lisp
@@ -256,9 +256,7 @@
/_ i i
i = 0
"
- (declare (type standard-tensor tensor)
- (type (or index-store-vector cons) idx))
- (typecase idx
+ (etypecase idx
(cons (store-indexing-lst idx (head tensor) (strides tensor) (dimensions tensor)))
(vector (store-indexing-vec idx (head tensor) (strides tensor) (dimensions tensor)))))
;;
-----------------------------------------------------------------------
Summary of changes:
src/base/standard-tensor.lisp | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
hooks/post-receive
--
matlisp
|