ADMB Documentation  -a65f1c97
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
df1b2loc.h
Go to the documentation of this file.
1 /*
2  * $Id$
3  *
4  * Author: David Fournier
5  * Copyright (c) 2008-2012 Regents of the University of California
6  *
7  * ADModelbuilder and associated libraries and documentations are
8  * provided under the general terms of the "BSD" license.
9  *
10  * License:
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions are
14  * met:
15  *
16  * 1. Redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer.
18  *
19  * 2. Redistributions in binary form must reproduce the above copyright
20  * notice, this list of conditions and the following disclaimer in the
21  * documentation and/or other materials provided with the distribution.
22  *
23  * 3. Neither the name of the University of California, Otter Research,
24  * nor the ADMB Foundation nor the names of its contributors may be used
25  * to endorse or promote products derived from this software without
26  * specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  *
40  */
48  int operator >= (const df1b2variable& x,const df1b2variable& y);
49  int operator >= (double x,const df1b2variable& y);
50  int operator >= (const df1b2variable& x,double y);
51 
52  int operator <= (const df1b2variable& x,const df1b2variable& y);
53  int operator <= (double x,const df1b2variable& y);
54  int operator <= (const df1b2variable& x,double y);
55 
56  int operator > (const df1b2variable& x,const df1b2variable& y);
57  int operator > (double x,const df1b2variable& y);
58  int operator > (const df1b2variable& x,double y);
59 
60  int operator < (const df1b2variable& x,const df1b2variable& y);
61  int operator < (double x,const df1b2variable& y);
62  int operator < (const df1b2variable& x,double y);
63 
64  int operator == (const df1b2variable& x,const df1b2variable& y);
65  int operator == (double x,const df1b2variable& y);
66  int operator == (const df1b2variable& x,double y);
67 
68  dvariable posfun(const dvariable&x,const double eps);
69 df1b2variable posfun(const df1b2variable&x, const double eps);
#define x
dvar_vector posfun(const dvar_vector &x, double eps, const prevariable &pen)
Description not yet available.
Definition: fvar_a62.cpp:17
int operator<(double v0, const prevariable &v1)
Description not yet available.
Definition: compare.cpp:53
Description not yet available.
Definition: df1b2fun.h:266
int operator==(double v0, const prevariable &v1)
Description not yet available.
Definition: compare.cpp:17
int operator>(double v0, const prevariable &v1)
Description not yet available.
Definition: compare.cpp:44
int operator<=(double v0, const prevariable &v1)
Description not yet available.
Definition: compare.cpp:26
double eps
Definition: ftweak.cpp:13
int operator>=(double v0, const prevariable &v1)
Description not yet available.
Definition: compare.cpp:35
Fundamental data type for reverse mode automatic differentiation.
Definition: fvar.hpp:1518