Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
| Download
GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
Project: cocalc-sagemath-dev-slelievre
Views: 418346/****************************************************************************1**2*W compiler.h GAP source Ferenc Ràkòczi3*W & Martin Schönert4**5**6*Y Copyright (C) 1997, Lehrstuhl D für Mathematik, RWTH Aachen, Germany7*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland8*Y Copyright (C) 2002 The GAP Group9**10** This file declares the functions of the GAP to C compiler.11*/1213#ifndef GAP_COMPILER_H14#define GAP_COMPILER_H151617/****************************************************************************18**19*F CompileFunc(<output>,<func>,<name>,<magic1>,<magic2>) . . . . . . compile20*/21extern Int CompileFunc (22Char * output,23Obj func,24Char * name,25Int magic1,26Char * magic2 );2728/****************************************************************************29**30*F SetCompileOpts( <string> ) . . parse the compiler options from <string>31** and set the appropriate variables32** unrecognised options are ignored for now33*/3435extern void SetCompileOpts( Char *opts );363738/****************************************************************************39**4041*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *42*/4344/****************************************************************************45**4647*F InitInfoCompiler() . . . . . . . . . . . . . . . table of init functions48*/49StructInitInfo * InitInfoCompiler ( void );505152#endif // GAP_COMPILER_H5354/****************************************************************************55**5657*E compiler.h . . . . . . . . . . . . . . . . . . . . . . . . . . ends here58*/596061