1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
######
#
# HX-2014-08:
# for Python code translated from ATS
#
######
######
#beg of [float_cats.py]
######
############################################
#
def ats2pypre_double2int(x): return int(x)
def ats2pypre_int_of_double(x): return int(x)
#
def ats2pypre_int2double(x): return float(x)
def ats2pypre_double_of_int(x): return float(x)
#
############################################
#
def ats2pypre_abs_double(x): return abs(x)
def ats2pypre_neg_double(x): return ( -x )
#
def ats2pypre_succ_double(x): return (x + 1)
def ats2pypre_pred_double(x): return (x + 1)
#
############################################
#
def ats2pypre_add_int_double(x, y): return (x + y)
def ats2pypre_sub_int_double(x, y): return (x - y)
def ats2pypre_mul_int_double(x, y): return (x * y)
def ats2pypre_div_int_double(x, y): return (x / y)
#
def ats2pypre_add_double_int(x, y): return (x + y)
def ats2pypre_sub_double_int(x, y): return (x - y)
def ats2pypre_mul_double_int(x, y): return (x * y)
def ats2pypre_div_double_int(x, y): return (x / y)
#
def ats2pypre_add_double_double(x, y): return (x + y)
def ats2pypre_sub_double_double(x, y): return (x - y)
def ats2pypre_mul_double_double(x, y): return (x * y)
def ats2pypre_div_double_double(x, y): return (x / y)
#
############################################
#
def ats2pypre_lt_int_double(x, y): return (x < y)
def ats2pypre_lte_int_double(x, y): return (x <= y)
def ats2pypre_gt_int_double(x, y): return (x > y)
def ats2pypre_gte_int_double(x, y): return (x >= y)
#
def ats2pypre_lt_double_int(x, y): return (x < y)
def ats2pypre_lte_double_int(x, y): return (x <= y)
def ats2pypre_gt_double_int(x, y): return (x > y)
def ats2pypre_gte_double_int(x, y): return (x >= y)
#
############################################
#
def ats2pypre_lt_double_double(x, y): return (x < y)
def ats2pypre_lte_double_double(x, y): return (x <= y)
def ats2pypre_gt_double_double(x, y): return (x > y)
def ats2pypre_gte_double_double(x, y): return (x >= y)
#
def ats2pypre_eq_double_double(x, y): return (x == y)
def ats2pypre_neq_double_double(x, y): return (x != y)
#
def ats2pypre_compare_double_double(x, y): return cmp(x, y)
#
############################################
###### end of [float_cats.py] ######
|