source: git/kernel/misc.cc @ 07625cb

spielwiese
Last change on this file since 07625cb was ac8f221, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: typei of siSeed git-svn-id: file:///usr/local/Singular/svn/trunk@9842 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 3.9 KB
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/*
5* ABSTRACT:
6*/
7
8#include <string.h>
9#include <unistd.h>
10#include <stdio.h>
11#include <stddef.h>
12#include <stdlib.h>
13#include <time.h>
14
15#include "mod2.h"
16#include <mylimits.h>
17#include "omalloc.h"
18#include "structs.h"
19#include "febase.h"
20//#include "cntrlc.h"
21#include "kstd1.h"
22#include "timer.h"
23#include "intvec.h"
24#include "ring.h"
25#include "omSingularConfig.h"
26#include "p_Procs.h"
27#include "kversion.h"
28
29#define SI_DONT_HAVE_GLOBAL_VARS
30
31//#ifdef HAVE_LIBPARSER
32//#  include "libparse.h"
33//#endif /* HAVE_LIBPARSER */
34
35#ifdef HAVE_FACTORY
36#include <factory.h>
37#endif
38
39/* version strings */
40#ifdef HAVE_LIBFAC_P
41  extern const char * libfac_version;
42  extern const char * libfac_date;
43#endif
44extern "C" {
45#include <gmp.h>
46}
47#ifdef HAVE_MPSR
48#include <MP_Config.h>
49#endif
50
51/* init bins from structs.h */
52
53omBin MP_INT_bin = omGetSpecBin(sizeof(MP_INT));
54omBin char_ptr_bin = omGetSpecBin(sizeof(char_ptr));
55omBin ideal_bin = omGetSpecBin(sizeof(ideal));
56omBin int_bin = omGetSpecBin(sizeof(int));
57omBin poly_bin = omGetSpecBin(sizeof(poly));
58omBin void_ptr_bin = omGetSpecBin(sizeof(void_ptr));
59omBin indlist_bin = omGetSpecBin(sizeof(indlist));
60omBin naIdeal_bin = omGetSpecBin(sizeof(naIdeal));
61omBin snaIdeal_bin = omGetSpecBin(sizeof(snaIdeal));
62omBin sm_prec_bin = omGetSpecBin(sizeof(sm_prec));
63omBin smprec_bin = omGetSpecBin(sizeof(smprec));
64omBin sip_sideal_bin = omGetSpecBin(sizeof(sip_sideal));
65omBin sip_smap_bin = omGetSpecBin(sizeof(sip_smap));
66omBin sip_sring_bin = omGetSpecBin(sizeof(sip_sring));
67omBin ip_sideal_bin = omGetSpecBin(sizeof(ip_sideal));
68omBin ip_smap_bin = omGetSpecBin(sizeof(ip_smap));
69omBin ip_sring_bin = omGetSpecBin(sizeof(ip_sring));
70
71/*0 implementation*/
72
73/*2
74* the global exit routine of Singular
75*/
76extern "C" {
77void m2_end(int i)
78{
79  fe_reset_input_mode();
80  #ifdef PAGE_TEST
81  mmEndStat();
82  #endif
83  #ifdef HAVE_TCL
84  if (tclmode)
85  {
86    PrintTCL('Q',0,NULL);
87  }
88  #endif
89  fe_reset_input_mode();
90  if (i<=0)
91  {
92    #ifdef HAVE_TCL
93    if (!tclmode)
94    #endif
95      if (BVERBOSE(0))
96      {
97        if (i==0)
98          printf("Auf Wiedersehen.\n");
99        else
100          printf("\n$Bye.\n");
101      }
102    //#ifdef sun
103    //  #ifndef __svr4__
104    //    _cleanup();
105    //    _exit(0);
106    //  #endif
107    //#endif
108    exit(0);
109  }
110  else
111  {
112    #ifdef HAVE_TCL
113    if (!tclmode)
114    #endif
115      printf("\nhalt %d\n",i);
116  }
117  exit(i);
118}
119}
120
121/*2
122* the renice routine for very large jobs
123* works only on unix machines,
124* testet on : linux, HP 9.0
125*
126*#ifndef MSDOS
127*#include <sys/times.h>
128*#include <sys/resource.h>
129*extern "C" int setpriority(int,int,int);
130*void very_nice()
131*{
132*#ifndef NO_SETPRIORITY
133*  setpriority(PRIO_PROCESS,0,19);
134*#endif
135*  sleep(10);
136*}
137*#else
138*void very_nice(){}
139*#endif
140*/
141
142/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
143#ifdef buildin_rand
144/*
145 *
146 *  A prime modulus multiplicative linear congruential
147 *  generator (PMMLCG), or "Lehmer generator".
148 *  Implementation directly derived from the article:
149 *
150 *        S. K. Park and K. W. Miller
151 *        Random Number Generators: Good Ones are Hard to Find
152 *        CACM vol 31, #10. Oct. 1988. pp 1192-1201.
153 *
154 *  Using the following multiplier and modulus, we obtain a
155 *  generator which:
156 *
157 *        1)  Has a full period: 1 to 2^31 - 2.
158 *        2)  Is testably "random" (see the article).
159 *        3)  Has a known implementation by E. L. Schrage.
160 */
161
162
163#define  A        16807        /*  A "good" multiplier          */
164#define  M   2147483647        /*  Modulus: 2^31 - 1          */
165#define  Q       127773        /*  M / A                  */
166#define  R         2836        /*  M % A                  */
167
168
169int siSeed = 1;
170
171
172int siRand()
173{
174  siSeed = A * (siSeed % Q) - R * (siSeed / Q);
175
176  if ( siSeed < 0 )
177    siSeed += M;
178
179  return( siSeed );
180}
181#endif
182
Note: See TracBrowser for help on using the repository browser.