Changeset d21c2c in git
- Timestamp:
- Mar 10, 2014, 3:26:20 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 5f4e0e5f2f9ec9aea8d113e4a58ecbc39cf69c35
- Parents:
- dbcaa4dc36f3331ba9316e072d2c4c61347c0957
- git-author:
- Martin Lee <martinlee84@web.de>2014-03-10 15:26:20+01:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-03-17 18:31:54+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/libfac/charset/csutil.cc
rdbcaa4 rd21c2c 255 255 else 256 256 { 257 On(SW_RATIONAL); 257 bool isRat= isOn (SW_RATIONAL); 258 if (!isRat) 259 On(SW_RATIONAL); 258 260 CanonicalForm temp= mapinto(rem); 259 261 // CERR << "temp= " << temp << "\n"; … … 290 292 291 293 temp= bCommonDen(temp/lc(temp))*(temp/lc(temp)); 292 Off(SW_RATIONAL); 294 if (!isRat) 295 Off(SW_RATIONAL); 293 296 rem= mapinto(temp); 294 297 return rem;
Note: See TracChangeset
for help on using the changeset viewer.