uhmanoa-transpiler-project / shaka-scheme

The official repository for the UH Manoa Transpiler Project's Scheme interpreter, Shaka Scheme.
32 stars 24 forks source link

Numerics: BigInt Header #60

Closed 1010jms closed 6 years ago

1010jms commented 6 years ago

Created a header file for the BigInteger class that contains the definitions for the constructors as well as the getter, the conversion functions to Rational and Real, the basic arithmetic operators, and the comparison operators.

Created the initial cpp file that contains comments explaining which algorithms need to be implemented for each function (as well as a link to each algorithm) as well as which functions need to be tested and which functions still need to be figured out.

Created unit test file that successfully tests the BigInteger constructors.

1010jms commented 6 years ago

Update: