summaryrefslogtreecommitdiff
path: root/t/mbi_ltm_biglog.t
diff options
context:
space:
mode:
authorKarel Miko <karel.miko@gmail.com>2017-11-24 17:22:39 +0100
committerKarel Miko <karel.miko@gmail.com>2017-11-24 17:22:39 +0100
commit6749e6cd16d2f765de87582cd87bb9e8b22783e8 (patch)
tree895da76d0d0ed29edf662d684b1aaeaffe13300d /t/mbi_ltm_biglog.t
parent1489dbf3a0a9c2bcb47809bc2ca7de2cfb7b182e (diff)
fix trailing whitespaces and tabs
Diffstat (limited to 't/mbi_ltm_biglog.t')
-rw-r--r--t/mbi_ltm_biglog.t20
1 files changed, 9 insertions, 11 deletions
diff --git a/t/mbi_ltm_biglog.t b/t/mbi_ltm_biglog.t
index f4ea0ab6..34ea3550 100644
--- a/t/mbi_ltm_biglog.t
+++ b/t/mbi_ltm_biglog.t
@@ -110,11 +110,11 @@ is ($cl->new('10')->blog(10,10), '1.000000000');
is ($cl->new('20')->blog(20,10), '1.000000000');
is ($cl->new('100')->blog(100,10), '1.000000000');
-is ($cl->new('100')->blog(10,10), '2.000000000'); # 10 ** 2 == 100
-is ($cl->new('400')->blog(20,10), '2.000000000'); # 20 ** 2 == 400
+is ($cl->new('100')->blog(10,10), '2.000000000'); # 10 ** 2 == 100
+is ($cl->new('400')->blog(20,10), '2.000000000'); # 20 ** 2 == 400
-is ($cl->new('4')->blog(2,10), '2.000000000'); # 2 ** 2 == 4
-is ($cl->new('16')->blog(2,10), '4.000000000'); # 2 ** 4 == 16
+is ($cl->new('4')->blog(2,10), '2.000000000'); # 2 ** 2 == 4
+is ($cl->new('16')->blog(2,10), '4.000000000'); # 2 ** 4 == 16
is ($cl->new('1.2')->bpow('0.3',10), '1.056219968');
is ($cl->new('10')->bpow('0.6',10), '3.981071706');
@@ -165,19 +165,19 @@ test_bpow ('0.2','0.41',10, '0.5169187652');
# test bexp() with cached results
is ($cl->new(1)->bexp(), '2.718281828459045235360287471352662497757', 'bexp(1)');
-is ($cl->new(2)->bexp(40), $cl->new(1)->bexp(45)->bpow(2,40), 'bexp(2)');
+is ($cl->new(2)->bexp(40), $cl->new(1)->bexp(45)->bpow(2,40), 'bexp(2)');
-is ($cl->new("12.5")->bexp(61), $cl->new(1)->bexp(65)->bpow(12.5,61), 'bexp(12.5)');
+is ($cl->new("12.5")->bexp(61), $cl->new(1)->bexp(65)->bpow(12.5,61), 'bexp(12.5)');
#############################################################################
# test bexp() with big values (non-cached)
-is ($cl->new(1)->bexp(100),
+is ($cl->new(1)->bexp(100),
'2.718281828459045235360287471352662497757247093699959574966967627724076630353547594571382178525166427',
'bexp(100)');
-is ($cl->new("12.5")->bexp(91), $cl->new(1)->bexp(95)->bpow(12.5,91),
- 'bexp(12.5) to 91 digits');
+is ($cl->new("12.5")->bexp(91), $cl->new(1)->bexp(95)->bpow(12.5,91),
+ 'bexp(12.5) to 91 digits');
# all done
1;
@@ -190,5 +190,3 @@ sub test_bpow
print "# Tried: $x->bpow($y,$scale);\n"
unless ok ($cl->new($x)->bpow($y,$scale),$result);
}
-
-