source: git/factory/facAlgExt.h @ 8d1432e

spielwiese
Last change on this file since 8d1432e was abddbe, checked in by Martin Lee <martinlee84@…>, 10 years ago
chg: added brief descriptions to some files
  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*****************************************************************************\
2 * Computer Algebra System SINGULAR
3\*****************************************************************************/
4/** @file facAlgExt.h
5 *
6 * Univariate factorization over algebraic extension of Q using Trager's
7 * algorithm
8 *
9 * @par Copyright:
10 *   (c) by The SINGULAR Team, see LICENSE file
11 *
12 * @author Martin Lee
13**/
14//*****************************************************************************
15
16#ifndef FAC_ALG_EXT_H
17#define FAC_ALG_EXT_H
18
19#include "cf_assert.h"
20
21#include "canonicalform.h"
22
23///factorize a univariate squarefree polynomial over algebraic extension of Q
24///
25/// @return @a AlgExtSqrfFactorize returns a list of factors of F
26CFList
27AlgExtSqrfFactorize (const CanonicalForm& F, ///<[in] a univariate squarefree
28                                             ///< polynomial
29                     const Variable& alpha   ///<[in] an algebraic variable
30                    );
31
32/// factorize a univariate polynomial over algebraic extension of Q
33///
34/// @return @a AlgExtFactorize returns a list of factors of F with multiplicity
35CFFList
36AlgExtFactorize (const CanonicalForm& F, ///<[in] a univariate polynomial
37                 const Variable& alpha   ///<[in] an algebraic variable
38                );
39
40#endif
41
Note: See TracBrowser for help on using the repository browser.