Changeset 9c98c2 in git for factory/FLINTconvert.h
- Timestamp:
- Feb 17, 2012, 11:12:16 AM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- e785e9081044da918572223fdfab379044387182
- Parents:
- c2aeb9aa4f5b5bc845c3d83ce3c7ab67db049358
- git-author:
- Martin Lee <martinlee84@web.de>2012-02-17 11:12:16+01:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-04-04 14:42:26+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/FLINTconvert.h
rc2aeb9 r9c98c2 17 17 #include <config.h> 18 18 #include "canonicalform.h" 19 #include "fac_util.h" 19 20 20 21 #ifdef HAVE_FLINT … … 26 27 #include <fmpq.h> 27 28 #include <fmpz_poly.h> 29 #include <fmpz_mod_poly.h> 28 30 #include <fmpq_poly.h> 29 31 #include <nmod_poly.h> … … 104 106 ); 105 107 108 /// conversion of a factory univariate poly over Z to a FLINT poly over 109 /// Z/p (for non word size p) 110 void 111 convertFacCF2Fmpz_mod_poly_t ( 112 fmpz_mod_poly_t result, ///< [in,out] fmpz_mod_poly_t 113 const CanonicalForm& f, ///< [in] univariate poly over 114 ///< Z 115 const fmpz_t p ///< [in] some integer p 116 ); 117 118 /// conversion of a FLINT poly over Z/p (for non word size p) to a CanonicalForm 119 /// over Z 120 CanonicalForm 121 convertFmpz_mod_poly_t2FacCF ( 122 fmpz_mod_poly_t poly, ///< [in] fmpz_mod_poly_t 123 const Variable& x, ///< [in] variable the result 124 ///< should have 125 const modpk& b ///< [in] coeff bound to map 126 ///< coeffs in (-p/2,p/2) 127 ); 128 106 129 #endif 107 130 #endif
Note: See TracChangeset
for help on using the changeset viewer.