Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Testing latest pari + WASM + node.js... and it works?! Wow.

28485 views
License: GPL3
ubuntu2004
1
/* Copyright (C) 2000 The PARI group.
2
3
This file is part of the PARI/GP package.
4
5
PARI/GP is free software; you can redistribute it and/or modify it under the
6
terms of the GNU General Public License as published by the Free Software
7
Foundation; either version 2 of the License, or (at your option) any later
8
version. It is distributed in the hope that it will be useful, but WITHOUT
9
ANY WARRANTY WHATSOEVER.
10
11
Check the License for details. You should have received a copy of it, along
12
with the package; see the file 'COPYING'. If not, write to the Free Software
13
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
14
15
/*************************************************************************/
16
/* */
17
/* GP-SPECIFIC DECLARATIONS */
18
/* */
19
/*************************************************************************/
20
BEGINEXTERN
21
void init_emacs(void);
22
void init_readline(void);
23
void init_texmacs(void);
24
25
/* gp specific routines */
26
void dbg_down(long k);
27
void dbg_up(long k);
28
GEN dbg_err(void);
29
void gp_quit(long exitcode);
30
void pari_breakpoint(void);
31
int whatnow(PariOUT *out, const char *s, int silent);
32
33
extern void (*cb_gp_output)(GEN z);
34
extern void (*cb_pari_end_output)(void);
35
extern entree functions_gp[];
36
37
/* architecture-dependent plot files (src/graph/plot*.c) */
38
void gp_get_plot(PARI_plot *T);
39
ENDEXTERN
40
41