Changeset 30c2d97 in git for kernel


Ignore:
Timestamp:
Jan 28, 2010, 11:39:49 AM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'd08f5f0bb3329b8ca19f23b74cb1473686415c3a')
Children:
d544b11776d6691410329c3725149cb11e700ab3
Parents:
af92df51b8d5feaf30e639aaa8980a541c934eb8
Message:
option qringNF - preparation

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

Legend:

Unmodified
Added
Removed
  • kernel/longalg.cc

    raf92df r30c2d97  
    2525#endif
    2626#include "longalg.h"
     27
     28struct snaIdeal
     29{
     30  int anz;
     31  napoly *liste;
     32};
     33typedef struct snaIdeal * naIdeal;
    2734
    2835naIdeal naI=NULL;
  • kernel/options.h

    raf92df r30c2d97  
    88 * ABSTRACT: macros for global options
    99 */
     10
     11#include "structs.h" /*for BITSET */
     12/*the general set of std-options : test */
     13/*the general set of verbose-options : verbose */
     14#ifdef __cplusplus
     15extern "C" BITSET test;
     16extern "C" BITSET verbose;
     17#else
     18extern BITSET test;
     19extern BITSET verbose;
     20#endif
    1021
    1122/*
     
    111122#define TEST_V_FINDMONOM           BVERBOSE(V_FINDMONOM)
    112123
     124
    113125#endif
  • kernel/structs.h

    raf92df r30c2d97  
    196196typedef struct p_Procs_s p_Procs_s;
    197197
    198 // for longalg.cc
    199 struct snaIdeal
    200 {
    201   int anz;
    202   napoly *liste;
    203 };
    204 typedef struct snaIdeal * naIdeal;
    205 
    206 
    207198// for sparsemat.cc
    208199typedef struct smprec sm_prec;
     
    682673#endif
    683674
    684 /*the general set of std-options --> kutil.cc */
    685 /*the general set of verbose-options --> febase.cc */
    686 #ifdef __cplusplus
    687 extern "C" BITSET test;
    688 extern "C" BITSET verbose;
    689 #else
    690 extern BITSET test;
    691 extern BITSET verbose;
    692 #endif
    693 
    694675#define loop for(;;)
    695676
Note: See TracChangeset for help on using the changeset viewer.