MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / testCopy

Method testCopy

JSAT/test/jsat/linear/DenseMatrixTest.java:672–679  ·  view source on GitHub ↗

Test of clone method, of class DenseMatrix.

()

Source from the content-addressed store, hash-verified

670 * Test of clone method, of class DenseMatrix.
671 */
672 @Test
673 public void testCopy()
674 {
675 Matrix ACopy = A.clone();
676
677 assertEquals(A, ACopy);
678 assertEquals(A.multiply(B), ACopy.multiply(B));
679 }
680
681 /**
682 * Test of swapRows method, of class DenseMatrix.

Callers

nothing calls this directly

Calls 3

multiplyMethod · 0.95
cloneMethod · 0.65
multiplyMethod · 0.45

Tested by

no test coverage detected