Macaulay2 Engine
Loading...
Searching...
No Matches

◆ make_monic_0()

void DPoly::make_monic_0 ( TowerPolynomial & f,
long & result_multiplier )
private

Definition at line 902 of file dpoly.cpp.

903{
904 if (f == nullptr) return;
905 long *p = f->arr.ints;
906 long a = p[f->deg];
907 long b;
908 ZZp_INVERT(charac, b, a);
909 mult_by_coeff_0(f, b);
910 result_multiplier = b;
911}
void mult_by_coeff_0(TowerPolynomial &f, long b)
Definition dpoly.cpp:872
long charac
Definition dpoly.hpp:115
void ZZp_INVERT(long charac, long &result, long b)
Definition dpoly.cpp:68
int p

References charac, mult_by_coeff_0(), p, and ZZp_INVERT().

Referenced by make_monic(), and make_monic3().