Example #1
0
TEST(RingZZmod2, negate)
{
  Z_mod* R = Z_mod::create(2);
  testRingNegate(R, ntrials);
}
Example #2
0
TEST(RingZZmod101, negate)
{
  Z_mod* R = Z_mod::create(101);
  testRingNegate(R, ntrials);
}
Example #3
0
TEST(RingQQ, negate)
{
  testRingNegate(globalQQ, ntrials);
}
Example #4
0
TEST(RingCCC, negate)
{
  CCC *R = CCC::create(100);
  testRingNegate(R, ntrials);
}
Example #5
0
TEST(RingRRR, negate)
{
  RRR *R = RRR::create(100);
  testRingNegate(R, ntrials);
}