Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
rat.ml
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
(* This file is free software, part of dolmen. See file "LICENSE" for more information *) (* Value definition *) (* ************************************************************************* *) (* Rationals, represented using zarith. *) type t = Q.t let compare = Q.compare let print fmt q = Format.fprintf fmt "%a "Q.pp_print q let ops = Value.ops ~compare ~print () (* Value helpers *) (* ************************************************************************* *) let ceil x = Q.of_bigint @@ Int.ceil x let floor x = Q.of_bigint @@ Int.floor x let truncate x = Q.of_bigint @@ Int.truncate x let half = { Q.num = Z.one; Q.den = Z.of_int 2 } let round x = if Q.lt Q.zero x then ceil (Q.sub x half) else floor (Q.add x half) let div_e a b = let s = Q.sign b in let d = Q.div a b in if s > 0 then floor d else ceil d let div_t a b = truncate (Q.div a b) let div_f a b = floor (Q.div a b) let mod_e a b = Q.sub a (Q.mul (div_e a b) b) let mod_t a b = Q.sub a (Q.mul (div_t a b) b) let mod_f a b = Q.sub a (Q.mul (div_f a b) b) (* Builtins *) (* ************************************************************************* *) module E = Dolmen.Std.Expr module B = Dolmen.Std.Builtin let mk i = Value.mk ~ops i let fun1 f ~cst = Fun.mk_clos @@ Fun.fun_1 ~cst (fun x -> f (Value.extract_exn ~ops x)) let fun2 f ~cst = Fun.mk_clos @@ Fun.fun_2 ~cst (fun x y -> f (Value.extract_exn ~ops x) (Value.extract_exn ~ops y)) let op1 ~cst f = Some (fun1 ~cst (fun x -> mk @@ f x)) let op2 ~cst f = Some (fun2 ~cst (fun x y -> mk @@ f x y)) let cmp ~cst p = Some (fun2 ~cst (fun x y -> Bool.mk @@ p x y)) let builtins ~eval:_ _ (cst : Dolmen.Std.Expr.Term.Const.t) = match cst.builtin with | B.Rational i -> Some (mk (Q.of_string i)) | B.Lt `Rat -> cmp ~cst Q.lt | B.Gt `Rat -> cmp ~cst Q.gt | B.Geq `Rat -> cmp ~cst Q.geq | B.Leq `Rat -> cmp ~cst Q.leq | B.Minus `Rat -> op1 ~cst (fun x -> Q.neg x) | B.Add `Rat -> op2 ~cst Q.add | B.Sub `Rat -> op2 ~cst Q.sub | B.Mul `Rat -> op2 ~cst Q.mul | B.Div `Rat -> op2 ~cst Q.div | B.Div_e `Rat -> op2 ~cst div_e | B.Div_t `Rat -> op2 ~cst div_t | B.Div_f `Rat -> op2 ~cst div_f | B.Modulo_e `Rat -> op2 ~cst mod_e | B.Modulo_t `Rat -> op2 ~cst mod_t | B.Modulo_f `Rat -> op2 ~cst mod_f | B.Is_rat `Rat -> Some (Bool.mk true) | B.Floor `Rat -> op1 ~cst floor | B.Ceiling `Rat -> op1 ~cst ceil | B.Truncate `Rat -> op1 ~cst truncate | B.Round `Rat -> op1 ~cst round | B.Is_int `Rat -> Some (fun1 ~cst (fun x -> Bool.mk (Z.equal Z.one x.Q.den))) | _ -> None