File: is_LR.t

package info (click to toggle)
libmath-matrixreal-perl 2.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,120 kB
  • sloc: perl: 2,837; makefile: 8
file content (26 lines) | stat: -rw-r--r-- 509 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use Test::More tests => 9;
use File::Spec;
use lib File::Spec->catfile("..","lib");
use Math::MatrixReal;

do 'funcs.pl';

my $matrix = Math::MatrixReal->new_from_string(<<MATRIX);
[ 1 2 3 ]
[ 2 3 4 ]
[ 4 5 6 ]
MATRIX

my $LR = $matrix->decompose_LR;
ok($LR->is_LR);
my $a = $LR;
my $b = $LR;
$a+=$matrix;
ok( ! $a->is_LR);
ok( ! ($LR**2)->is_LR );
ok( ! (~$LR)->is_LR );
ok( ! $LR->inverse->is_LR );
ok( ! $LR->cofactor->is_LR );
ok( ! $LR->adjoint->is_LR );
ok( ! $LR->minor(1,1)->is_LR );
ok( $b->is_LR );