Source: tests/dense/bounds_LowerMatrix.cpp
15 #include <tests/myratest.h> 19 ADD_TEST(
"bounds_LowerMatrix",
"[dense]")
24 REQUIRE_EXCEPTION(
auto l = L.at(5,0); );
25 REQUIRE_EXCEPTION(
auto l = L.at(0,5); );
26 REQUIRE_EXCEPTION(
auto l = L.at(-1,0); );
27 REQUIRE_EXCEPTION(
auto l = L.at(0,-1); );
28 REQUIRE_EXCEPTION(
auto l = L.at(0,1); );
Specialized container for a lower triangular matrix, O(N^2/2) storage. Used by symmetry exploiting ma...
static LowerMatrix< Number > random(int N)
Generates a random LowerMatrix of specified size.
Definition: LowerMatrix.cpp:249
Results: [PASS]
Go back to Summary of /test programs.