version 1.4, 2000/08/21 08:31:47 |
version 1.9, 2000/12/22 10:03:32 |
|
|
* shall be made on your publication or presentation in any form of the |
* shall be made on your publication or presentation in any form of the |
* results obtained by use of the SOFTWARE. |
* results obtained by use of the SOFTWARE. |
* (4) In the event that you modify the SOFTWARE, you shall notify FLL by |
* (4) In the event that you modify the SOFTWARE, you shall notify FLL by |
* e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification |
* e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification |
* for such modification or the source code of the modified part of the |
* for such modification or the source code of the modified part of the |
* SOFTWARE. |
* SOFTWARE. |
* |
* |
|
|
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* |
* |
* $OpenXM: OpenXM_contrib2/asir2000/parse/main.c,v 1.3 2000/02/08 04:47:12 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/parse/main.c,v 1.8 2000/12/05 01:24:57 noro Exp $ |
*/ |
*/ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
#if defined(THINK_C) |
|
#include <console.h> |
|
#endif |
|
|
|
#if PARI |
#if PARI |
#include "genpari.h" |
#include "genpari.h" |
Line 60 extern jmp_buf environnement; |
|
Line 57 extern jmp_buf environnement; |
|
#endif |
#endif |
|
|
extern jmp_buf env; |
extern jmp_buf env; |
extern int *StackBottom; |
|
|
|
|
#if defined(INTERVAL) |
|
#ifndef ASIRRCNAME |
|
#define ASIRRCNAME "int_asirrc" |
|
#endif |
|
#else |
|
#ifndef ASIRRCNAME |
|
#define ASIRRCNAME "asirrc" |
|
#endif |
|
#endif |
|
|
|
|
double get_current_time(); |
double get_current_time(); |
extern int mpi_nprocs,mpi_myid; |
extern int mpi_nprocs,mpi_myid; |
|
|
|
#if MPI |
|
int *StackBottom; |
|
#endif |
|
|
#if defined(VISUAL_LIB) |
#if defined(VISUAL_LIB) |
void Main(argc,argv) |
void Main(argc,argv) |
#else |
#else |
|
|
char *slash,*binname; |
char *slash,*binname; |
char *ptr; |
char *ptr; |
|
|
StackBottom = &tmp + 1; /* XXX */ |
|
#if MPI |
#if MPI |
|
StackBottom = &tmp; |
mpi_init(); |
mpi_init(); |
if ( mpi_myid ) { |
if ( mpi_myid ) { |
int slave_argc; |
int slave_argc; |
|
|
srandom((int)get_current_time()); |
srandom((int)get_current_time()); |
/* mt_sgenrand((unsigned long)get_current_time()); */ |
/* mt_sgenrand((unsigned long)get_current_time()); */ |
|
|
#if defined(THINK_C) |
|
param_init(); |
|
#endif |
|
rtime_init(); |
rtime_init(); |
env_init(); |
env_init(); |
endian_init(); |
endian_init(); |
#if 0 && !defined(VISUAL) && !defined(THINK_C) |
|
check_key(); |
|
#endif |
|
GC_init(); |
GC_init(); |
process_args(--argc,++argv); |
process_args(--argc,++argv); |
#if PARI |
#if PARI |
|
|
if ( ptr = getenv("ASIR_CONFIG") ) |
if ( ptr = getenv("ASIR_CONFIG") ) |
strcpy(ifname,ptr); |
strcpy(ifname,ptr); |
else { |
else { |
#if defined(THINK_C) |
|
sprintf(ifname,"asirrc"); |
|
#else |
|
homedir = getenv("HOME"); |
homedir = getenv("HOME"); |
if ( !homedir ) { |
if ( !homedir ) { |
char rootname[BUFSIZ]; |
char rootname[BUFSIZ]; |
|
|
get_rootdir(rootname,sizeof(rootname)); |
get_rootdir(rootname,sizeof(rootname)); |
homedir = rootname; |
homedir = rootname; |
} |
} |
sprintf(ifname,"%s/.asirrc",homedir); |
sprintf(ifname,"%s/." ASIRRCNAME,homedir); |
#endif |
|
} |
} |
|
|
if ( do_asirrc && (ifp = fopen(ifname,"r")) ) { |
if ( do_asirrc && (ifp = fopen(ifname,"r")) ) { |