We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
arf_set_str
Since there is a function char * arf_get_str(const arf_t x, slong prec), it will be good to also define a function with the effect of
char * arf_get_str(const arf_t x, slong prec)
inline int arf_set_str(arf_t res, const char * inp, slong prec) { arb_t y; arb_init(y); if (arb_set_str(y, inp, prec)) return 1; arf_set(res, &y->mid); return 0; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since there is a function
char * arf_get_str(const arf_t x, slong prec)
, it will be good to also define a function with the effect ofThe text was updated successfully, but these errors were encountered: