You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JSC_Infprec.h 624B

1234567891011121314151617181920212223242526272829303132
  1. /**********************************************************
  2. This software is part of J.-S. Caux's ABACUS library.
  3. Copyright (c).
  4. -----------------------------------------------------------
  5. File: JSC_Infprec.h
  6. Purpose: Declarations for infinite precision arithmetic classes.
  7. ***********************************************************/
  8. #ifndef _JSC_INFPREC_
  9. #define _JSC_INFPREC_
  10. namespace JSC {
  11. class infprec_int {
  12. private:
  13. int nintrep; // number of integers used in representation
  14. int baseint; // fundamental int
  15. Vect<unsigned int> xint; // extra integers
  16. }
  17. } // namespace JSC
  18. #endif