source: git/libpolys/polys/templates/p_Procs_Dynamic.h @ 5a3ae8

spielwiese
Last change on this file since 5a3ae8 was 014b65, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
- moved misc,reporter,resources,coeffs,polys -> (new) libpolys (Hans agreed) - migrated to automake in coeffs, misc status: everything builds (except polys) todo: . migrate resources and reporter to automake . create autoconf macros for omalloc, factory, and libpolys
  • Property mode set to 100644
File size: 957 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4
5/***************************************************************
6 *  File:    p_Procs_Dynamic.h
7 *  Purpose: Configuration for p_Procs as dynamic library procedures
8 *  Author:  obachman (Olaf Bachmann)
9 *  Created: 12/00
10 *  Version: $Id$
11 *******************************************************************/
12
13#ifndef P_PROCS_DYNAMIC_H
14#define P_PROCS_DYNAMIC_H
15
16// see p_Procs_Impl.h for an explaination of these defines
17#define HAVE_FAST_P_PROCS   5
18#define HAVE_FAST_FIELD     2
19#define HAVE_FAST_ORD 4
20#define HAVE_FAST_ZERO_ORD 2
21
22// stupid hpux -- can not handle sl which are that large
23#ifdef __hpux
24#define HAVE_FAST_LENGTH 3
25#else
26#define HAVE_FAST_LENGTH 4
27#endif
28
29// for the configuration of what goes into the kenel and what into
30// shared libs, see p_Procs_Generate.cc:IsKernelProc(...)
31
32#endif // P_PROCS_DYNAMC_H
33
Note: See TracBrowser for help on using the repository browser.