Changeset 147b6d in git
- Timestamp:
- Dec 3, 2012, 4:12:45 PM (11 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 22002e1d9c2f5400230ae871fcff511606690bd1
- Parents:
- 05c3b87378ab3e8310b306f10a0eec4bd579ca9c
- git-author:
- Martin Lee <martinlee84@web.de>2012-12-03 16:12:45+01:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-12-03 16:47:10+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_gcd_smallp.cc
r05c3b87 r147b6d 2000 2000 nmod_mat_t FLINTN; 2001 2001 convertFacCFMatrix2nmod_mat_t (FLINTN, *N); 2002 long* dummy= new long [M.rows()]; 2003 for (int i= 0; i < M.rows(); i++) 2004 dummy[i]= 0; 2005 long rk= nmod_mat_rref (dummy, FLINTN); 2002 long rk= nmod_mat_rref (FLINTN); 2006 2003 2007 2004 N= convertNmod_mat_t2FacCFMatrix (FLINTN); 2008 2005 nmod_mat_clear (FLINTN); 2009 delete dummy;2010 2006 #else 2011 2007 int p= getCharacteristic (); … … 2083 2079 nmod_mat_t FLINTN; 2084 2080 convertFacCFMatrix2nmod_mat_t (FLINTN, *N); 2085 long* dummy= new long [M.rows()]; 2086 for (int i= 0; i < M.rows(); i++) 2087 dummy[i]= 0; 2088 long rk= nmod_mat_rref (dummy, FLINTN); 2081 long rk= nmod_mat_rref (FLINTN); 2089 2082 #else 2090 2083 int p= getCharacteristic (); … … 2101 2094 #ifdef HAVE_FLINT 2102 2095 nmod_mat_clear (FLINTN); 2103 delete dummy;2104 2096 #endif 2105 2097 delete N; … … 2109 2101 N= convertNmod_mat_t2FacCFMatrix (FLINTN); 2110 2102 nmod_mat_clear (FLINTN); 2111 delete dummy;2112 2103 #else 2113 2104 N= convertNTLmat_zz_p2FacCFMatrix (*NTLN);
Note: See TracChangeset
for help on using the changeset viewer.