mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 02:15:19 +00:00
34 lines
441 B
C
34 lines
441 B
C
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
big_rational.h
|
|
|
|
Abstract:
|
|
|
|
Big rational numbers
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2006-09-18.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _BIG_RATIONAL_H_
|
|
#define _BIG_RATIONAL_H_
|
|
|
|
#ifdef _WINDOWS
|
|
#include"..\msbig_rational\msbig_rational.h"
|
|
#else
|
|
#ifdef NO_GMP
|
|
#include"dummy_big_rational.h"
|
|
#else
|
|
#include"gmp_big_rational.h"
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* _BIG_RATIONAL_H_ */
|
|
|