Changeset 318de0 in git


Ignore:
Timestamp:
Jul 8, 1996, 10:13:08 AM (27 years ago)
Author:
Rüdiger Stobbe <stobbe@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
995f1cc5ea98223893365bb03608bc85b99ade76
Parents:
88e0d34f9d6d3e65444de5ad4cf59b7a05fde723
Message:
"New function resetFPT that resets the pascal triangle for finite
characteristic.
"


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

Legend:

Unmodified
Added
Removed
  • factory/cf_binom.cc

    r88e0d34 r318de0  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: cf_binom.cc,v 1.0 1996-05-17 10:59:43 stobbe Exp $
     2// $Id: cf_binom.cc,v 1.1 1996-07-08 08:13:08 stobbe Exp $
    33
    44/*
    55$Log: not supported by cvs2svn $
     6Revision 1.0  1996/05/17 10:59:43  stobbe
     7Initial revision
     8
    69*/
    710
     
    2427
    2528void
     29resetFPT()
     30{
     31    ptFmax = 0;
     32}
     33
     34void
    2635initPT ( )
    2736{
     
    2938
    3039    if ( ! initialized ) {
    31         CFFList lll = CFFList();
    32         lll.insert( CFFactor( 1, 2 ) );
    3340        initialized = true;
    3441        ptZ = new CFArray[MAXPT+1];
  • factory/cf_binom.h

    r88e0d34 r318de0  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: cf_binom.h,v 1.0 1996-05-17 10:59:37 stobbe Exp $
     2// $Id: cf_binom.h,v 1.1 1996-07-08 08:13:08 stobbe Exp $
    33
    44#ifndef INCL_CF_BINOM_H
     
    77/*
    88$Log: not supported by cvs2svn $
     9Revision 1.0  1996/05/17 10:59:37  stobbe
     10Initial revision
     11
    912*/
    1013
     
    1215
    1316void initPT();
     17
     18void resetFPT();
    1419
    1520/*BEGINPUBLIC*/
Note: See TracChangeset for help on using the changeset viewer.