本文整理汇总了C++中ring_elem::get_int方法的典型用法代码示例。如果您正苦于以下问题:C++ ring_elem::get_int方法的具体用法?C++ ring_elem::get_int怎么用?C++ ring_elem::get_int使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ring_elem
的用法示例。
在下文中一共展示了ring_elem::get_int方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: compare_elems
int GF::compare_elems(const ring_elem f, const ring_elem g) const
{
int cmp = f.get_int() - g.get_int();
if (cmp < 0) return -1;
if (cmp == 0) return 0;
return 1;
}
示例2: elem_text_out
void GF::elem_text_out(buffer &o,
const ring_elem a,
bool p_one,
bool p_plus,
bool p_parens) const
{
if (a.get_int() == _ZERO)
{
o << "0";
return;
}
ring_elem h = _originalR->power(_primitive_element->get_value(), a.int_val);
_originalR->elem_text_out(o, h, p_one, p_plus, p_parens);
_originalR->remove(h);
}
示例3: internal_negate_to
void GF::internal_negate_to(ring_elem &f) const
{
if (f.get_int() != _ZERO)
f = modulus_add(f.get_int(), _MINUS_ONE, Q1_);
}
示例4: is_equal
bool GF::is_equal(const ring_elem f, const ring_elem g) const
{
return f.get_int() == g.get_int();
}
示例5: is_zero
bool GF::is_zero(const ring_elem f) const
{
return (f.get_int() == _ZERO);
}
示例6: is_unit
bool GF::is_unit(const ring_elem f) const
{
return (f.get_int() != _ZERO);
}