defa_double_property_xam() :
## load the Cppad Swig libraryimport py_cppad
## initialize return variable
ok = True
# ---------------------------------------------------------------------
three = py_cppad.a_double(3.0)
#
ok = ok and three.value() == 3.0
ok = ok and three.parameter()
ok = ok andnot three.variable()
## near_equal
r3 = three.sqrt()
ok = ok and three.near_equal( r3 * r3) ;
#return( ok )
#