Prev | Next |
# include <cppad/utility/check_simple_vector.hpp>
CheckSimpleVector<Scalar, Vector>()
CheckSimpleVector<Scalar, Vector>(x, y)
Vector
satisfies all the requirements for
a SimpleVector
class with
elements of type
Scalar
.
If a requirement is not satisfied,
a an error message makes it clear what condition is not satisfied.
x
and
y
are present,
they have prototype
const Scalar& x
const Scalar& y
In addition, the check
x == x
will return the boolean value true
, and
x == y
will return false
.
x
and
y
are not present,
the following extra assumption is made by CheckSimpleVector
:
If
x
is a
Scalar
object
x = 0
y = 1
assigns values to the objects
x
and
y
.
In addition,
x == x
would return the boolean value true
and
x == y
would return false
.
cppad/utility/check_simple_vector.hpp
is included by cppad/cppad.hpp
but it can also be included separately with out the rest
if the CppAD include files.
S
is the same as
T
.
The comments in this example suggest a way to change the example
so
S
is not the same as
T
.