proposed acb_set_ui_ui() function

4 views
Skip to first unread message

American Citizen

unread,
Nov 12, 2025, 1:14:13 PM (23 hours ago) Nov 12
to flint-devel
I would like to propose a new function be added to the acb.h header file called acb_set_ui_ui which takes two ulong variables x,y and uses them to set the real and imag parts of the acb_t variable.

Here's the patch to do this;

--- acb.h       2025-06-16 02:38:15.000000000 -0700
+++ new.acb.h   2025-11-11 10:40:25.499764233 -0800
@@ -232,6 +232,13 @@
 }
 
 ACB_INLINE void
+acb_set_ui_ui(acb_t z, ulong x, ulong y)
+{
+    arb_set_ui(acb_realref(z), x);
+    arb_set_ui(acb_imagref(z), y);
+}
+
+ACB_INLINE void
 acb_set_si_si(acb_t z, slong x, slong y)
 {
     arb_set_si(acb_realref(z), x);

Reply all
Reply to author
Forward
0 new messages