source: git/kernel/p_Procs_Dynamic.h @ b1c0a9

spielwiese
Last change on this file since b1c0a9 was 35aab3, checked in by Hans Schönemann <hannes@…>, 20 years ago
This commit was generated by cvs2svn to compensate for changes in r6879, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@6880 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1020 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: p_Procs_Dynamic.h,v 1.1.1.1 2003-10-06 12:16:00 Singular Exp $
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.