File tree 3 files changed +6
-9
lines changed
3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
1
package dynamic
2
2
3
- import (
4
- "fmt"
5
- "testing"
6
- )
3
+ import "testing"
7
4
8
5
func TestSubsetSum (t * testing.T ) {
9
6
@@ -74,7 +71,7 @@ func TestSubsetSum(t *testing.T) {
74
71
75
72
for i := range subsetSumTestData {
76
73
77
- t .Run (fmt . Sprintf ( subsetSumTestData [i ].description ) , func (t * testing.T ) {
74
+ t .Run (subsetSumTestData [i ].description , func (t * testing.T ) {
78
75
array := subsetSumTestData [i ].array
79
76
sum := subsetSumTestData [i ].sum
80
77
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ func TestNewFromElements(t *testing.T) {
32
32
for j := 0 ; j < len (validElements [0 ]); j ++ {
33
33
err := expectedm1 .Set (i , j , validElements [i ][j ])
34
34
if err != nil {
35
- t .Errorf ("copyMatrix.Set error: " + err .Error ())
35
+ t .Errorf ("copyMatrix.Set error: %s" , err .Error ())
36
36
}
37
37
}
38
38
}
@@ -73,7 +73,7 @@ func TestMatrixGet(t *testing.T) {
73
73
matrix := matrix .New (3 , 3 , 0 )
74
74
err := matrix .Set (1 , 1 , 42 ) // Set a specific value for testing
75
75
if err != nil {
76
- t .Errorf ("copyMatrix.Set error: " + err .Error ())
76
+ t .Errorf ("copyMatrix.Set error: %s" , err .Error ())
77
77
}
78
78
// Test case 1: Valid Get
79
79
val1 , err1 := matrix .Get (1 , 1 )
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ func TestStrassenMatrixMultiply(t *testing.T) {
66
66
}
67
67
}
68
68
func TestMatrixMultiplication (t * testing.T ) {
69
- rand .Seed ( time .Now ().UnixNano ())
69
+ rand .New ( rand . NewSource ( time .Now ().UnixNano () ))
70
70
71
71
// Generate random matrices for testing
72
72
size := 1 << (rand .Intn (8 ) + 1 ) // tests for matrix with n as power of 2
@@ -103,7 +103,7 @@ func TestMatrixMultiplication(t *testing.T) {
103
103
}
104
104
105
105
func MakeRandomMatrix [T constraints.Integer ](rows , columns int ) matrix.Matrix [T ] {
106
- rand .Seed ( time .Now ().UnixNano ())
106
+ rand .New ( rand . NewSource ( time .Now ().UnixNano () ))
107
107
108
108
matrixData := make ([][]T , rows )
109
109
for i := 0 ; i < rows ; i ++ {
You can’t perform that action at this time.
0 commit comments