コード例 #1
0
ファイル: RingZZpTest.cpp プロジェクト: DanGrayson/M2
TEST(RingZZmod2, negate)
{
  Z_mod* R = Z_mod::create(2);
  testRingNegate(R, ntrials);
}
コード例 #2
0
ファイル: RingZZpTest.cpp プロジェクト: DanGrayson/M2
TEST(RingZZmod101, negate)
{
  Z_mod* R = Z_mod::create(101);
  testRingNegate(R, ntrials);
}
コード例 #3
0
ファイル: RingQQTest.cpp プロジェクト: ChristineJost/M2
TEST(RingQQ, negate)
{
  testRingNegate(globalQQ, ntrials);
}
コード例 #4
0
ファイル: RingCCCTest.cpp プロジェクト: DanGrayson/M2
TEST(RingCCC, negate)
{
  CCC *R = CCC::create(100);
  testRingNegate(R, ntrials);
}
コード例 #5
0
ファイル: RingRRRTest.cpp プロジェクト: AlessandroOneto/M2
TEST(RingRRR, negate)
{
  RRR *R = RRR::create(100);
  testRingNegate(R, ntrials);
}