gen_fun::Hadamard_product: don't assume equalities are independent
[barvinok.git] / NTL_QQ.cc
blob2343cb9926ff9e82486322a2451f7706e4a6e907
1 #include <assert.h>
2 #include <barvinok/NTL_QQ.h>
4 NTL_vector_impl(QQ,vec_QQ);
6 std::ostream& operator<< (std::ostream& os, const QQ& q)
8 os << q.n << "/" << q.d;
9 return os;
12 std::istream& operator>> (std::istream& os, QQ& q)
14 assert(0);
17 NTL_io_vector_impl(QQ,vec_QQ);