Changeset 26914c in git for kernel/tgb_internal.h


Ignore:
Timestamp:
Feb 23, 2006, 1:39:35 PM (18 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
c72471e62710d737a6a64bb0569be9c2fc77b65f
Parents:
81131b7d18ab85d12f47a90fcd4556494c374c1f
Message:
*bricken: support for boost::dynamic_bitset


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

Legend:

Unmodified
Added
Removed
  • kernel/tgb_internal.h

    r81131b7 r26914c  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb_internal.h,v 1.25 2006-02-21 11:21:37 bricken Exp $ */
     7/* $Id: tgb_internal.h,v 1.26 2006-02-23 12:39:22 bricken Exp $ */
    88/*
    99 * ABSTRACT: tgb internal .h file
     
    1818#include "polys.h"
    1919#include "stdlib.h"
     20//#define HAVE_BOOST 1
     21#ifdef HAVE_BOOST
     22#include "boost/dynamic_bitset.hpp"
     23#include <vector>
     24using boost::dynamic_bitset;
     25using std::vector;
     26#endif
    2027
    2128
     
    8794    slimgb_alg(ideal I, BOOLEAN F4);
    8895    virtual ~slimgb_alg();
     96  #ifndef HAVE_BOOST
    8997  char** states;
     98  #else
     99  vector<dynamic_bitset<> > states;
     100  #endif
    90101  ideal add_later;
    91102  ideal S;
Note: See TracChangeset for help on using the changeset viewer.