Changeset 1b38e5d in git


Ignore:
Timestamp:
Sep 28, 2010, 1:44:15 PM (14 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
0af2004187271da7bb6f06f4612d7947d57c7b49
Parents:
c94e60f986f0fb36f24beb94af60519b01cb313c
Message:
added doxygen docu


git-svn-id: file:///usr/local/Singular/svn/trunk@13297 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
factory
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • factory/facAlgExt.cc

    rc94e60f r1b38e5d  
    66 * @date
    77 *
     8 * Univariate factorization over algebraic extension of Q using Trager's
     9 * algorithm
    810 *
    911 * @par Copyright:
     
    2830#include "facAlgExt.h"
    2931
     32// squarefree part of F
    3033CanonicalForm
    3134sqrfPart (const CanonicalForm& F)
     
    3841}
    3942
     43// i is an integer such that Norm (F (x-i*alpha)) is squarefree
    4044CanonicalForm sqrfNorm (const CanonicalForm& F, const Variable& alpha, int& i)
    4145{
  • factory/facAlgExt.h

    rc94e60f r1b38e5d  
    66 * @date
    77 *
     8 * Univariate factorization over algebraic extension of Q using Trager's
     9 * algorithm
    810 *
    911 * @par Copyright:
     
    2022#include "canonicalform.h"
    2123
    22 CFList AlgExtSqrfFactorize (const CanonicalForm& F, const Variable& alpha);
    23 CFFList AlgExtFactorize (const CanonicalForm& F, const Variable& alpha);
     24///factorize a univariate squarefree polynomial over algebraic extension of Q
     25///
     26/// @return @a AlgExtSqrfFactorize returns a list of factors of F
     27CFList
     28AlgExtSqrfFactorize (const CanonicalForm& F, ///<[in] a univariate squarefree
     29                                             ///< polynomial
     30                     const Variable& alpha   ///<[in] an algebraic variable
     31                    );
     32
     33/// factorize a univariate polynomial over algebraic extension of Q
     34///
     35/// @return @a AlgExtFactorize returns a list of factors of F with multiplicity                   
     36CFFList
     37AlgExtFactorize (const CanonicalForm& F, ///<[in] a univariate polynomial
     38                 const Variable& alpha   ///<[in] an algebraic variable
     39                );
Note: See TracChangeset for help on using the changeset viewer.