Reduced sizes of testing vectors/matrices from 1000 to 100

This commit is contained in:
Vincent Esche 2019-09-25 01:42:15 +02:00
parent fa55e572fd
commit 5e9e974c5d
1 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ extension Array where Element: FloatingPoint & ExpressibleByFloatLiteral {
extension Vector where Scalar: FloatingPoint & ExpressibleByFloatLiteral {
static var defaultDimensions: Int {
return 1_000
return 100
}
static func monotonic() -> Vector {
@ -119,11 +119,11 @@ extension Vector where Scalar: FloatingPoint & ExpressibleByFloatLiteral {
extension Matrix where Scalar: FloatingPoint & ExpressibleByFloatLiteral {
static var defaultRows: Int {
return 1_000
return 100
}
static var defaultColumns: Int {
return 1_000
return 100
}
static func monotonic() -> Matrix {