summaryrefslogtreecommitdiff
path: root/libre/sagemath/anal.h
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-07-16 14:21:34 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-07-16 14:21:34 -0500
commit7a24dbb2f6dca9e0c30f75c3c9b12d81c41bd984 (patch)
tree95c21b175d249070039a7eaa2ab8b8a2b2a6aa27 /libre/sagemath/anal.h
parent5c9e07c02b8174ddb3782bfd24c58451654bfe5a (diff)
downloadabslibre-7a24dbb2f6dca9e0c30f75c3c9b12d81c41bd984.tar.gz
abslibre-7a24dbb2f6dca9e0c30f75c3c9b12d81c41bd984.tar.bz2
abslibre-7a24dbb2f6dca9e0c30f75c3c9b12d81c41bd984.zip
sagemath: add new package to [libre]
Diffstat (limited to 'libre/sagemath/anal.h')
-rw-r--r--libre/sagemath/anal.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/libre/sagemath/anal.h b/libre/sagemath/anal.h
new file mode 100644
index 000000000..f77d47025
--- /dev/null
+++ b/libre/sagemath/anal.h
@@ -0,0 +1,65 @@
+/* Copyright (C) 2000 The PARI group.
+
+This file is part of the PARI/GP package.
+
+PARI/GP is free software; you can redistribute it and/or modify it under the
+terms of the GNU General Public License as published by the Free Software
+Foundation. It is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY WHATSOEVER.
+
+Check the License for details. You should have received a copy of it, along
+with the package; see the file 'COPYING'. If not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
+
+/*************************************************************************/
+/* */
+/* Declarations specific to the analyzer */
+/* */
+/*************************************************************************/
+BEGINEXTERN
+/* GP control structures */
+#define EXPR_WRAP(code, call) \
+{ GEN z; GEN __E = code; \
+ push_lex(gen_0, __E); z = call; pop_lex(1); return z; }
+#define EXPR_ARG __E, &gp_eval
+#define EXPR_ARGUPTO __E, &gp_evalupto
+#define EXPR_ARGBOOL __E, &gp_evalbool
+
+/* functions */
+void changevalue(entree *ep, GEN val);
+void freeep(entree *ep);
+void pari_fill_hashtable(entree **table, entree *ep);
+
+void compile_err(const char *msg, const char *str);
+void compile_varerr(const char *str);
+
+#ifdef STACK_CHECK
+extern THREAD void *PARI_stack_limit;
+#endif
+
+extern entree **varentries;
+
+struct node_loc
+{
+ const char *start,*end;
+};
+
+union token_value { long val; };
+
+int pari_lex(union token_value *yylval, struct node_loc *yylloc, char **lex);
+int pari_parse(char **lex);
+entree* fetch_entry(const char *s, long len);
+entree* fetch_member(const char *s, long len);
+void pari_close_parser(void);
+void pari_close_compiler(void);
+void pari_close_evaluator(void);
+void pari_init_parser(void);
+void pari_init_compiler(void);
+void pari_init_evaluator(void);
+void optimizenode(long n);
+void push_frame(GEN C, long lpc, long flag);
+const char * closure_func_err(void);
+GEN gp_closure(long n);
+long eval_mnemonic(GEN str, const char *tmplate);
+
+ENDEXTERN