Skip to content

Commit 483adcb

Browse files
committed
Update Zephir dependency and fix coding style
1 parent 178da34 commit 483adcb

File tree

98 files changed

+615
-615
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+615
-615
lines changed

benchmarks/Arithmetic/MatrixColumnVectorMultiplyBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class MatrixColumnVectorMultiplyBench
1313
{
1414
/**
15-
* @var \Tensor\Matrix
15+
* @var Matrix
1616
*/
1717
protected $a;
1818

benchmarks/Arithmetic/MatrixMatrixMultiplyBench.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
class MatrixMatrixMultiplyBench
1212
{
1313
/**
14-
* @var \Tensor\Matrix
14+
* @var Matrix
1515
*/
1616
protected $a;
1717

1818
/**
19-
* @var \Tensor\Matrix
19+
* @var Matrix
2020
*/
2121
protected $b;
2222

benchmarks/Arithmetic/MatrixScalarMultiplyBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class MatrixScalarMultiplyBench
1212
{
1313
/**
14-
* @var \Tensor\Matrix
14+
* @var Matrix
1515
*/
1616
protected $a;
1717

benchmarks/Arithmetic/MatrixSumBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class MatrixSumBench
1212
{
1313
/**
14-
* @var \Tensor\Matrix
14+
* @var Matrix
1515
*/
1616
protected $a;
1717

benchmarks/Arithmetic/MatrixVectorMultiplyBench.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
class MatrixVectorMultiplyBench
1313
{
1414
/**
15-
* @var \Tensor\Matrix
15+
* @var Matrix
1616
*/
1717
protected $a;
1818

1919
/**
20-
* @var \Tensor\Vector
20+
* @var Vector
2121
*/
2222
protected $b;
2323

benchmarks/Arithmetic/VectorVectorMultiplyBench.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
class VectorVectorMultiplyBench
1212
{
1313
/**
14-
* @var \Tensor\Vector
14+
* @var Vector
1515
*/
1616
protected $a;
1717

1818
/**
19-
* @var \Tensor\Vector
19+
* @var Vector
2020
*/
2121
protected $b;
2222

benchmarks/Comparison/VectorVectorEqualBench.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
class VectorVectorEqualBench
1212
{
1313
/**
14-
* @var \Tensor\Vector
14+
* @var Vector
1515
*/
1616
protected $a;
1717

1818
/**
19-
* @var \Tensor\Vector
19+
* @var Vector
2020
*/
2121
protected $b;
2222

benchmarks/Decompositions/CholeskyBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class CholeskyBench
1212
{
1313
/**
14-
* @var \Tensor\Matrix
14+
* @var Matrix
1515
*/
1616
protected $a;
1717

benchmarks/Decompositions/EigBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class EigBench
1111
{
1212
/**
13-
* @var \Tensor\Matrix
13+
* @var Matrix
1414
*/
1515
protected $a;
1616

benchmarks/Decompositions/LUBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class LUBench
1212
{
1313
/**
14-
* @var \Tensor\Matrix
14+
* @var Matrix
1515
*/
1616
protected $a;
1717

0 commit comments

Comments
 (0)