From c7a29fa63d18a8f2b1d5f7067fbb020211b040fb Mon Sep 17 00:00:00 2001 From: Alejandro Isaza Date: Tue, 17 Nov 2015 10:35:33 -0800 Subject: [PATCH] Add RealTensor and RealTensorSlice (fix #36) --- Source/Real.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Real.swift b/Source/Real.swift index 7565c1c9..b267a5ac 100644 --- a/Source/Real.swift +++ b/Source/Real.swift @@ -24,3 +24,6 @@ public typealias Real = Double public typealias RealArray = ValueArray public typealias RealArraySlice = ValueArraySlice public typealias RealMatrix = Matrix + +public typealias RealTensor = Tensor +public typealias RealTensorSlice = TensorSlice