-
+ 618A69A4BBB18555C26135CDFB3279183D88D47495F89D601670DFE911524078BF7AB5C3025712AD4CC1448B302D11AB3E47CD74E870401FAADAB6303831A5B9
ffa/libffa/fz_pred.ads
(0 . 0)(1 . 19)
634 with Words; use Words;
635 with FZ_Type; use FZ_Type;
636
637
638 package FZ_Pred is
639
640 pragma Pure;
641
642 --------------------------------------------
643 -- Fundamental Predicate Operations on FZ --
644 --------------------------------------------
645
646 -- 1 iff N == 0 (branch-free); else 0
647 function FZ_ZeroP(N : in FZ) return WBool;
648
649 -- 1 iff N is odd
650 function FZ_OddP(N : in FZ) return WBool;
651
652 end FZ_Pred;