repo.or.cz
/
Math-GSL.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixing syntax errors in Matrix.i
[Math-GSL.git]
/
t
/
Function.t
blob
f5e489ff4fae24869893d623ef315824b46211f4
1
use Test::More tests => 2;
2
use Math::GSL::Function qw/gsl_max gsl_min/;
3
use strict;
4
5
ok( gsl_max(3,4)==4, 'gsl_max' );
6
ok( gsl_min(4,3)==3, 'gsl_min' );