summaryrefslogtreecommitdiff
path: root/test/unit/util/real_algebraic_number_black.h
blob: fbe8065a9955fe4cdd415edbbe7e40e03ad7eacd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*********************                                                        */
/*! \file real_algebraic_number_black.h
 ** \verbatim
 ** Top contributors (to current version):
 **   Gereon Kremer
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
 ** in the top-level source directory and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief Black box testing of CVC4::RealAlgebraicNumber.
 **
 ** Black box testing of CVC4::RealAlgebraicNumber.
 **/

#include <cxxtest/TestSuite.h>

#include "util/real_algebraic_number.h"

using namespace CVC4;
using namespace std;

#ifndef CVC4_POLY_IMP
#error "This unit test should only be enabled for CVC4_POLY_IMP"
#endif

class RealAlgebraicNumberBlack : public CxxTest::TestSuite
{
 public:
  void testCreation()
  {
    TS_ASSERT(isZero(RealAlgebraicNumber()));
    TS_ASSERT(isOne(RealAlgebraicNumber(Integer(1))));
    TS_ASSERT(!isOne(RealAlgebraicNumber(Rational(2))));
    RealAlgebraicNumber sqrt2({-2, 0, 1}, 1, 2);
    TS_ASSERT(RealAlgebraicNumber(Integer(1)) < sqrt2);
    TS_ASSERT(sqrt2 < RealAlgebraicNumber(Integer(2)));
  }

  void testComparison()
  {
    RealAlgebraicNumber msqrt3({-3, 0, 1}, -2, -1);
    RealAlgebraicNumber msqrt2({-2, 0, 1}, -2, -1);
    RealAlgebraicNumber zero;
    RealAlgebraicNumber sqrt2({-2, 0, 1}, 1, 2);
    RealAlgebraicNumber sqrt3({-3, 0, 1}, 1, 2);

    TS_ASSERT(msqrt3 < msqrt2);
    TS_ASSERT(msqrt3 < zero);
    TS_ASSERT(msqrt3 < sqrt2);
    TS_ASSERT(msqrt3 < sqrt3);
    TS_ASSERT(msqrt2 < zero);
    TS_ASSERT(msqrt2 < sqrt2);
    TS_ASSERT(msqrt2 < sqrt3);
    TS_ASSERT(zero < sqrt2);
    TS_ASSERT(zero < sqrt3);
    TS_ASSERT(sqrt2 < sqrt3);
  }

  void testSgn()
  {
    RealAlgebraicNumber msqrt2({-2, 0, 1}, -2, -1);
    RealAlgebraicNumber zero;
    RealAlgebraicNumber sqrt2({-2, 0, 1}, 1, 2);

    TS_ASSERT_EQUALS(sgn(msqrt2), -1);
    TS_ASSERT_EQUALS(sgn(zero), 0);
    TS_ASSERT_EQUALS(sgn(sqrt2), 1);
  }

  void testArithmetic()
  {
    RealAlgebraicNumber msqrt2({-2, 0, 1}, -2, -1);
    RealAlgebraicNumber zero;
    RealAlgebraicNumber sqrt2({-2, 0, 1}, 1, 2);

    TS_ASSERT_EQUALS(msqrt2 + sqrt2, zero);
    TS_ASSERT_EQUALS(-msqrt2, sqrt2);
    TS_ASSERT_EQUALS(-msqrt2 + sqrt2, sqrt2 + sqrt2);
    TS_ASSERT_EQUALS(msqrt2 * sqrt2, RealAlgebraicNumber(Integer(-2)));
  }
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback