Changeset 911444 in git


Ignore:
Timestamp:
Jun 17, 2010, 3:53:09 PM (14 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
dabc64ca3d2580305b6389d9503d56447fbebf34
Parents:
fecc08cb1fbac7aebf01c221287ec9360849a8b4
Message:
some syntax fixes

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

Legend:

Unmodified
Added
Removed
  • factory/cf_gcd_smallp.cc

    rfecc08 r911444  
    3939#endif
    4040
     41#include "cf_gcd_smallp.h"
     42
    4143#ifdef HAVE_NTL
    4244
     
    337339/// based on Alg. 7.2. as described in "Algorithms for
    338340/// Computer Algebra" by Geddes, Czapor, Labahn
    339 static inline CanonicalForm
     341CanonicalForm
    340342GCD_Fp_extension (const CanonicalForm& F, const CanonicalForm& G,
    341343                  Variable & alpha, CFList& l, bool& top_level)
     
    577579/// faster field arithmetics, however it might fail if the input is large since
    578580/// the size of the base field is bounded by 2^16, output is monic
    579 inline
    580 CanonicalForm
    581 GCD_GF (const CanonicalForm& F, const CanonicalForm& G, CFList& l,
    582         bool& top_level)
     581CanonicalForm GCD_GF (const CanonicalForm& F, const CanonicalForm& G,
     582        CFList& l, bool& top_level)
    583583{
    584584  CanonicalForm A= F;
     
    828828}
    829829
    830 static inline
    831830CanonicalForm GCD_small_p (const CanonicalForm& F, const CanonicalForm&  G,
    832831                           bool& top_level, CFList& l)
  • factory/cf_gcd_smallp.h

    rfecc08 r911444  
    5454
    5555/// GCD of A and B over GF
    56 CanonicalForm GCD_GF (const CanonicalForm& A, const CanonicalForm& B)
     56static inline CanonicalForm GCD_GF (const CanonicalForm& A, const CanonicalForm& B)
    5757{
    5858  ASSERT (CFFactory::gettype() == GaloisFieldDomain,
  • factory/cf_map_ext.h

    rfecc08 r911444  
    1818**/
    1919//*****************************************************************************
    20 
    21 #include "cf_map_ext.cc"
    2220
    2321CanonicalForm GFMapUp (const CanonicalForm & F, int k);
  • factory/facFqBivar.cc

    rfecc08 r911444  
    3333#include "cf_map.h"
    3434#include "cf_gcd_smallp.h"
    35 #include "DegreePattern.cc"
    36 #include "facFqBivarUtil.cc"
    3735#include "facFqBivar.h"
    3836
Note: See TracChangeset for help on using the changeset viewer.