annotate liboctave/numeric/Quad-opts.in @ 23220:092078913d54

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Wed, 22 Feb 2017 12:58:07 -0500
parents 3a2b891d0b33 3ac9f9ecfae5
children 194eb4bd202b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
23219
3ac9f9ecfae5 maint: Update copyright dates.
John W. Eaton <jwe@octave.org>
parents: 22323
diff changeset
1 # Copyright (C) 2002-2017 John W. Eaton
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 4051
diff changeset
2 #
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 4051
diff changeset
3 # This file is part of Octave.
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 12612
diff changeset
4 #
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 4051
diff changeset
5 # Octave is free software; you can redistribute it and/or modify it
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
6 # under the terms of the GNU General Public License as published by
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
7 # the Free Software Foundation; either version 3 of the License, or
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
8 # (at your option) any later version.
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 12612
diff changeset
9 #
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
10 # Octave is distributed in the hope that it will be useful, but
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
13 # GNU General Public License for more details.
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 12612
diff changeset
14 #
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 4051
diff changeset
15 # You should have received a copy of the GNU General Public License
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 4051
diff changeset
16 # along with Octave; see the file COPYING. If not, see
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 4051
diff changeset
17 # <http://www.gnu.org/licenses/>.
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 4051
diff changeset
18
3998
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
19 CLASS = "Quad"
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
20
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
21 OPTION
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
22 NAME = "absolute tolerance"
4051
b79da8779a0e [project @ 2002-08-17 19:38:32 by jwe]
jwe
parents: 3998
diff changeset
23 DOC_ITEM
b79da8779a0e [project @ 2002-08-17 19:38:32 by jwe]
jwe
parents: 3998
diff changeset
24 Absolute tolerance; may be zero for pure relative error test.
10840
89f4d7e294cc Grammarcheck .cc files
Rik <octave@nomad.inbox5.com>
parents: 8920
diff changeset
25
4051
b79da8779a0e [project @ 2002-08-17 19:38:32 by jwe]
jwe
parents: 3998
diff changeset
26 END_DOC_ITEM
3998
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
27 TYPE = "double"
15220
61822c866ba1 use std::numeric_limits<T>::epsilon in C++ code
John W. Eaton <jwe@octave.org>
parents: 14138
diff changeset
28 INIT_VALUE = "::sqrt (std::numeric_limits<double>::epsilon ())"
3998
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
29 SET_EXPR = "val"
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
30 END_OPTION
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
31
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
32 OPTION
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
33 NAME = "relative tolerance"
4051
b79da8779a0e [project @ 2002-08-17 19:38:32 by jwe]
jwe
parents: 3998
diff changeset
34 DOC_ITEM
10840
89f4d7e294cc Grammarcheck .cc files
Rik <octave@nomad.inbox5.com>
parents: 8920
diff changeset
35 Non-negative relative tolerance. If the absolute tolerance is zero,
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 12612
diff changeset
36 the relative tolerance must be greater than or equal to
12612
16cca721117b doc: Update all documentation for chapter on Numerical Integration
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
37 @w{@code{max (50*eps, 0.5e-28)}}.
10840
89f4d7e294cc Grammarcheck .cc files
Rik <octave@nomad.inbox5.com>
parents: 8920
diff changeset
38
4051
b79da8779a0e [project @ 2002-08-17 19:38:32 by jwe]
jwe
parents: 3998
diff changeset
39 END_DOC_ITEM
3998
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
40 TYPE = "double"
15220
61822c866ba1 use std::numeric_limits<T>::epsilon in C++ code
John W. Eaton <jwe@octave.org>
parents: 14138
diff changeset
41 INIT_VALUE = "::sqrt (std::numeric_limits<double>::epsilon ())"
3998
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
42 SET_EXPR = "val"
f6df65db67f9 [project @ 2002-07-24 18:10:39 by jwe]
jwe
parents:
diff changeset
43 END_OPTION
7805
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
44
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
45 OPTION
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
46 NAME = "single precision absolute tolerance"
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
47 DOC_ITEM
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 12612
diff changeset
48 Absolute tolerance for single precision; may be zero for pure relative
7805
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
49 error test.
10840
89f4d7e294cc Grammarcheck .cc files
Rik <octave@nomad.inbox5.com>
parents: 8920
diff changeset
50
7805
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
51 END_DOC_ITEM
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
52 TYPE = "float"
15220
61822c866ba1 use std::numeric_limits<T>::epsilon in C++ code
John W. Eaton <jwe@octave.org>
parents: 14138
diff changeset
53 INIT_VALUE = "::sqrt (std::numeric_limits<float>::epsilon ())"
7805
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
54 SET_EXPR = "val"
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
55 END_OPTION
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
56
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
57 OPTION
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
58 NAME = "single precision relative tolerance"
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
59 DOC_ITEM
10840
89f4d7e294cc Grammarcheck .cc files
Rik <octave@nomad.inbox5.com>
parents: 8920
diff changeset
60 Non-negative relative tolerance for single precision. If the absolute
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 12612
diff changeset
61 tolerance is zero, the relative tolerance must be greater than or equal to
12612
16cca721117b doc: Update all documentation for chapter on Numerical Integration
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
62 @w{@code{max (50*eps, 0.5e-28)}}.
7805
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
63 END_DOC_ITEM
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
64 TYPE = "float"
15220
61822c866ba1 use std::numeric_limits<T>::epsilon in C++ code
John W. Eaton <jwe@octave.org>
parents: 14138
diff changeset
65 INIT_VALUE = "::sqrt (std::numeric_limits<float>::epsilon ())"
7805
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
66 SET_EXPR = "val"
62affb34e648 Make quad work with single precision
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
67 END_OPTION