source: git/factory/ftest/ntl_util.h @ 667ba1

fieker-DuValspielwiese
Last change on this file since 667ba1 was 341696, checked in by Hans Schönemann <hannes@…>, 15 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 748 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id$ */
3
4#ifndef INCL_NTL_UTIL_H
5#define INCL_NTL_UTIL_H
6
7//{{{ docu
8//
9// ntl_util.h - header to ntl_util.cc.
10//
11//}}}
12
13#include <factory.h>
14
15#include <ZZ.h>
16#include <ZZ_p.h>
17#include <ZZX.h>
18#include <zz_pX.h>
19
20void operator << ( ZZ &, const CanonicalForm & );
21void operator << ( CanonicalForm &, const ZZ & );
22void operator << ( ZZX &, const CanonicalForm & );
23void operator << ( CanonicalForm &, const ZZX & );
24void operator << ( zz_p &, const CanonicalForm & );
25void operator << ( CanonicalForm &, const zz_p & );
26void operator << ( zz_pX &, const CanonicalForm & );
27void operator << ( CanonicalForm &, const zz_pX & );
28
29void setCharacteristicNTL ( int );
30
31#endif /* ! INCL_NTL_UTIL_H */
Note: See TracBrowser for help on using the repository browser.