view liboctave/Quad-opts.in @ 5100:5a92c3177fc6 before-gnuplot-split

[project @ 2004-12-27 17:20:38 by jwe]
author jwe
date Mon, 27 Dec 2004 17:20:38 +0000
parents b79da8779a0e
children a1dbe9d80eee
line wrap: on
line source

CLASS = "Quad"

OPTION
  NAME = "absolute tolerance"
  DOC_ITEM
Absolute tolerance; may be zero for pure relative error test.
  END_DOC_ITEM
  TYPE = "double"
  INIT_VALUE = "::sqrt (DBL_EPSILON)"
  SET_EXPR = "val"
END_OPTION

OPTION
  NAME = "relative tolerance"
  DOC_ITEM
Nonnegative relative tolerance.  If the absolute tolerance is zero,
the relative tolerance must be greater than or equal to 
@code{max (50*eps, 0.5e-28)}.
  END_DOC_ITEM
  TYPE = "double"
  INIT_VALUE = "::sqrt (DBL_EPSILON)"
  SET_EXPR = "val"
END_OPTION