wrong constructor

This commit is contained in:
Eric Berberich 2010-06-29 07:32:52 +00:00
parent 8465f28c7c
commit 6844958df1
1 changed files with 2 additions and 1 deletions

View File

@ -408,7 +408,8 @@ public:
num*=CGAL::ipower(Integer(2),p);
denom=1;
}
Bound b(num,denom);
Bound b(num);
b /= Bound(denom);
CGAL::simplify(b);
return b;
}