File: bool.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 (40 lines) | stat: -rw-r--r-- 1,040 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use Test::More tests => 12;
use File::Spec;
use lib File::Spec->catfile("..","lib");
use Math::MatrixReal;

do 'funcs.pl';

$matrix = Math::MatrixReal->new_from_string(<<"MATRIX");
[ 1 0 0 0 1 ]
[ 0 2 0 0 2 ]
[ 0 0 3 0 0 ]
[ 0 0 0 4 0 ]
[ 0 0 0 0 1 ]
MATRIX
ok(!$matrix->is_positive, 'matrices containing zeros are not considered positive' );
ok(!$matrix->is_negative, 'matrices containing zeros are not considered negative' );
ok($matrix, 'matrix returns true' );

########################
$matrix = Math::MatrixReal->new_from_string(<<"MATRIX");
[ 1 0 0 0 0 ]
[ 0 3 0 0 0 ]
[ 0 0 4 0 0 ]
[ 1 0 0 1 0 ]
[ 1 1 1 1 1 ]
MATRIX
$matrix = $matrix->each( sub { (shift)+1; } );
ok($matrix->is_positive, 'matrix is positive' );
ok(!$matrix->is_negative, 'matrix is not negative' );
ok($matrix, 'matrix returns true' );
$matrix = $matrix->each( sub { (shift)-11; } );
ok(!$matrix->is_positive );
ok($matrix->is_negative );
ok($matrix, 'matrix returns true' );
$matrix->zero;
ok(!$matrix->is_positive );
ok(!$matrix->is_negative );
ok(!$matrix );