Changeset 9b1e4c in git for Singular


Ignore:
Timestamp:
Aug 26, 2003, 3:29:55 PM (21 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
b1326b5f68e392f727e8cc19ff0eb7374da2aa3a
Parents:
a5131ff6a4dfab59773930114ea9787f702304b0
Message:
*hannes: Christian Cornelsen, part 1


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

Legend:

Unmodified
Added
Removed
  • Singular/febase.cc

    ra5131ff r9b1e4c  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: febase.cc,v 1.98 2003-04-24 16:55:53 Singular Exp $ */
     4/* $Id: febase.cc,v 1.99 2003-08-26 13:28:44 Singular Exp $ */
    55/*
    66* ABSTRACT: i/o system
    77*/
    88
     9#include "mod2.h"
     10
    911/* I need myfread in standalone_parser */
    1012#ifndef STANDALONE_PARSER
    11 #include "mod2.h"
    1213
    1314#include <stdlib.h>
  • Singular/libparse.l

    ra5131ff r9b1e4c  
    33*  Computer Algebra System SINGULAR     *
    44****************************************/
    5 /* $Id: libparse.l,v 1.50 2002-06-03 12:15:08 Singular Exp $ */
     5/* $Id: libparse.l,v 1.51 2003-08-26 13:28:46 Singular Exp $ */
    66#include <stdio.h>
    77#include <string.h>
    88#include <stdlib.h>
    99#include <ctype.h>
     10#include "mod2.h"
    1011#ifdef STANDALONE_PARSER
    1112  #include "utils.h"
     
    1314  #define YYLPDEBUG 1
    1415#else
    15   #include "mod2.h"
    1616  #include "subexpr.h"
    1717  #include "grammar.h"
  • Singular/modulop.cc

    ra5131ff r9b1e4c  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: modulop.cc,v 1.32 2003-06-20 14:40:38 Singular Exp $ */
     4/* $Id: modulop.cc,v 1.33 2003-08-26 13:28:46 Singular Exp $ */
    55/*
    66* ABSTRACT: numbers modulo p (<=32003)
     
    103103#ifdef HAVE_DIV_MOD
    104104#if 1 //ifdef HAVE_NTL // in ntl.a
    105 extern void XGCD(long& d, long& s, long& t, long a, long b);
     105//extern void XGCD(long& d, long& s, long& t, long a, long b);
     106#include <NTL/ZZ.h>
     107#ifdef NTL_CLIENT
     108NTL_CLIENT
     109#endif
    106110#else
    107111void XGCD(long& d, long& s, long& t, long a, long b)
Note: See TracChangeset for help on using the changeset viewer.