changeset 20872:ead410040418

2015 Code Sprint: mark bessel functions as tested * besselj.cc (Fbesselj, Fbessely, Fbesseli, Fbesselk, Fbesselh): Mark as tested at the end of the file. (Fairy): Mark as not yet tested.
author Mike Miller <mtmiller@octave.org>
date Sat, 12 Dec 2015 13:22:50 -0500
parents 1e4edab2d22f
children 9fbacc123a91
files libinterp/corefcn/besselj.cc
diffstat 1 files changed, 24 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/besselj.cc	Sat Dec 12 10:08:35 2015 -0800
+++ b/libinterp/corefcn/besselj.cc	Sat Dec 12 13:22:50 2015 -0500
@@ -383,6 +383,10 @@
   return do_bessel (BESSEL_J, "besselj", args, nargout);
 }
 
+/*
+%!# Function besselj is tested along with other bessels at the end of this file
+*/
+
 DEFUN (bessely, args, nargout,
        "-*- texinfo -*-\n\
 @deftypefn {} {[@var{y}, @var{ierr}] =} bessely (@var{alpha}, @var{x}, @var{opt})\n\
@@ -392,6 +396,10 @@
   return do_bessel (BESSEL_Y, "bessely", args, nargout);
 }
 
+/*
+%!# Function bessely is tested along with other bessels at the end of this file
+*/
+
 DEFUN (besseli, args, nargout,
        "-*- texinfo -*-\n\
 @deftypefn {} {[@var{i}, @var{ierr}] =} besseli (@var{alpha}, @var{x}, @var{opt})\n\
@@ -401,6 +409,10 @@
   return do_bessel (BESSEL_I, "besseli", args, nargout);
 }
 
+/*
+%!# Function besseli is tested along with other bessels at the end of this file
+*/
+
 DEFUN (besselk, args, nargout,
        "-*- texinfo -*-\n\
 @deftypefn {} {[@var{k}, @var{ierr}] =} besselk (@var{alpha}, @var{x}, @var{opt})\n\
@@ -410,6 +422,10 @@
   return do_bessel (BESSEL_K, "besselk", args, nargout);
 }
 
+/*
+%!# Function besselk is tested along with other bessels at the end of this file
+*/
+
 DEFUN (besselh, args, nargout,
        "-*- texinfo -*-\n\
 @deftypefn {} {[@var{h}, @var{ierr}] =} besselh (@var{alpha}, @var{k}, @var{x}, @var{opt})\n\
@@ -450,6 +466,10 @@
   return retval;
 }
 
+/*
+%!# Function besselh is tested along with other bessels at the end of this file
+*/
+
 DEFUN (airy, args, nargout,
        "-*- texinfo -*-\n\
 @deftypefn {} {[@var{a}, @var{ierr}] =} airy (@var{k}, @var{z}, @var{opt})\n\
@@ -557,6 +577,10 @@
 }
 
 /*
+%!# FIXME: Function airy does not yet have BIST tests
+*/
+
+/*
 ## Test values computed with GP/PARI version 2.3.3
 %!shared alpha, x, jx, yx, ix, kx, nix
 %!