Changeset 7353f55 in git
- Timestamp:
- Sep 11, 2013, 1:24:45 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 152ec74edbee09b172a256b0a6b596d4c76046eb
- Parents:
- 49fb43b3f7752b3a63be8c8108db0a25847d8ea6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_gcd_smallp.cc
r49fb43b r7353f55 737 737 if (((degree (ppCoF,1)+degree (ppH,1) == bound1) && 738 738 (degree (ppCoG,1)+degree (ppH,1) == bound2) && 739 terminationTest (ppA, ppB, ppCoF, ppCoG, ppH)) || 739 terminationTest (ppA, ppB, ppCoF, ppCoG, ppH)) || 740 740 (fdivides (ppH, ppA, ppCoF) && fdivides (ppH, ppB, ppCoG))) 741 741 { … … 1722 1722 1723 1723 N= convertNmod_mat_t2FacCFMatrix (FLINTN); 1724 delete N; 1724 1725 nmod_mat_clear (FLINTN); 1725 1726 #else … … 1731 1732 } 1732 1733 mat_zz_p *NTLN= convertFacCFMatrix2NTLmat_zz_p(*N); 1734 delete N; 1733 1735 long rk= gauss (*NTLN); 1734 1736 1735 1737 N= convertNTLmat_zz_p2FacCFMatrix (*NTLN); 1738 delete NTLN; 1736 1739 #endif 1737 1740 … … 1809 1812 long rk= gauss (*NTLN); 1810 1813 #endif 1814 delete N; 1811 1815 if (rk != M.columns()) 1812 1816 { … … 1814 1818 nmod_mat_clear (FLINTN); 1815 1819 #endif 1816 delete N;1817 1820 return CFArray(); 1818 1821 } … … 1822 1825 #else 1823 1826 N= convertNTLmat_zz_p2FacCFMatrix (*NTLN); 1827 delete NTLN; 1824 1828 #endif 1825 1829 CFArray A= readOffSolution (*N, rk);
Note: See TracChangeset
for help on using the changeset viewer.