add tmp assertions

This commit is contained in:
Sebastien Loriot 2021-10-11 17:16:04 +02:00 committed by GitHub
parent e2f38514ce
commit 112b633ad6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -396,11 +396,13 @@ inline bool isDivisible(const BigRat& x, const BigRat& y) {
}
inline BigRat operator<<(const BigRat& a, unsigned long ul) {
BigRat r;
assert(false);
//AF todo no << for Q r.get_mp() = a.get_mp() << int(ul) ;
return r;
}
inline BigRat operator>>(const BigRat& a, unsigned long ul) {
BigRat r;
assert(false);
// AF todo no >> for Q r.get_mp() = a.get_mp() >> ul;
return r;
}