Removed unused test function

This commit is contained in:
Vincent Esche 2019-08-11 13:21:31 +02:00
parent 28d7ea00c4
commit 2be03f3e08
1 changed files with 0 additions and 5 deletions

View File

@ -96,11 +96,6 @@ class MatrixTests: XCTestCase {
XCTAssertEqual(matrix, expected)
}
// func test_pow() {
// let expectedResult = Matrix<Double>([[1, 4, 9, 16], [25, 36, 49, 64], [81, 100, 121, 144]])
// XCTAssertEqual(pow(matrix, 2), expectedResult)
// }
func test_add_matrix_matrix_float() {
typealias Scalar = Float