Changeset 1a776f in git


Ignore:
Timestamp:
Aug 29, 1997, 10:37:35 AM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f58e958187d5c122ce089f305af18735f95debe2
Parents:
1a4ace4613db02c2fd2caeb52630024906ed55a4
Message:
	* cf_factor.cc (sqrFree( CF )): removed
	  (sqrFree( CF, bool )): default argument initializer added
	  (factorize( CF, bool )): default argument initializer added


git-svn-id: file:///usr/local/Singular/svn/trunk@638 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_factor.cc

    r1a4ace4 r1a776f  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: cf_factor.cc,v 1.4 1997-06-19 12:27:17 schmidt Exp $ */
     2/* $Id: cf_factor.cc,v 1.5 1997-08-29 08:37:35 schmidt Exp $ */
     3
     4//{{{ docu
     5//
     6// cf_factor.cc - factorization and square free algorithms.
     7//
     8// Used by: fac_multivar.cc, fac_univar.cc, cf_irred.cc
     9//
     10//}}}
    311
    412#include <config.h>
     
    1220#include "canonicalform.h"
    1321#include "cf_iter.h"
    14 #include "cf_factor.h"
    1522#include "fac_berlekamp.h"
    1623#include "fac_cantzass.h"
     
    1825#include "fac_multivar.h"
    1926#include "fac_sqrfree.h"
    20 
    2127
    2228static bool isUnivariateBaseDomain( const CanonicalForm & f )
     
    2935}
    3036
    31 CFFList factorize ( const CanonicalForm & f, bool issqrfree )
     37CFFList factorize ( const CanonicalForm & f, bool issqrfree = false )
    3238{
    3339    if ( f.inCoeffDomain() )
     
    5662}
    5763
    58 CFFList sqrFree ( const CanonicalForm & f, bool sort )
     64CFFList sqrFree ( const CanonicalForm & f, bool sort = false )
    5965{
    6066//    ASSERT( f.isUnivariate(), "multivariate factorization not implemented" );
Note: See TracChangeset for help on using the changeset viewer.