本文整理汇总了Python中jas.Ring.random方法的典型用法代码示例。如果您正苦于以下问题:Python Ring.random方法的具体用法?Python Ring.random怎么用?Python Ring.random使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jas.Ring
的用法示例。
在下文中一共展示了Ring.random方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Ring
# 需要导入模块: from jas import Ring [as 别名]
# 或者: from jas.Ring import random [as 别名]
from jas import terminate
from jas import startLog
# polynomial examples: gcd
#r = Ring( "Mod 1152921504606846883 (x,y,z) L" );
#r = Ring( "Rat(x,y,z) L" );
#r = Ring( "C(x,y,z) L" );
r = Ring( "Z(x,y,z) L" );
print "Ring: " + str(r);
print;
[one,x,y,z] = r.gens();
a = r.random();
b = r.random();
c = abs(r.random());
#c = 1;
#a = 0;
f = x * a + b * y**2 + one * z**7;
print "a = ", a;
print "b = ", b;
print "c = ", c;
print "f = ", f;
print;
ac = a * c;
bc = b * c;