本文整理汇总了Python中jas.Ring.factors方法的典型用法代码示例。如果您正苦于以下问题:Python Ring.factors方法的具体用法?Python Ring.factors怎么用?Python Ring.factors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jas.Ring
的用法示例。
在下文中一共展示了Ring.factors方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: startLog
# 需要导入模块: from jas import Ring [as 别名]
# 或者: from jas.Ring import factors [as 别名]
## + ( ( y + 2 ) * z**2 + ( y**2 + 2 * y + 1 ) * z + 2 * y**2 + y ) * x \
## + ( y + 1 ) * z**3 + ( y + 1 ) * z**2 + ( y**3 + y**2 ) * z + y**3 + y**2;
# f = ( x + y * z + y + z + 1 ) * ( x**2 + ( y + z ) * x + y**2 + z**2 );
f = (x + y * z + y + z + 1) * (x ** 2 + (y + z) * x + y ** 2 + 1)
# f = ( x + y ) * ( x - y);
print "f = ", f
print
startLog()
t = System.currentTimeMillis()
G = r.factors(f)
t = System.currentTimeMillis() - t
print "#G = ", len(G)
# print "factor time =", t, "milliseconds";
g = one
for h, i in G.iteritems():
print "h**i = (", h, ")**" + str(i)
h = h ** i
g = g * h
# print "g = ", g;
if cmp(f, g) == 0:
print "factor time =", t, "milliseconds,", "isFactors(f,g): true"
else:
print "factor time =", t, "milliseconds,", "isFactors(f,g): ", cmp(f, g)