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 bool.h GAP source Martin Schönert3**4**5*Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany6*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland7*Y Copyright (C) 2002 The GAP Group8**9** This file declares the functions for the boolean package.10*/1112#ifndef GAP_BOOL_H13#define GAP_BOOL_H141516/****************************************************************************17**1819*V True . . . . . . . . . . . . . . . . . . . . . . . . . . . . true value20**21** 'True' is the value 'true'.22*/23extern Obj True;242526/****************************************************************************27**28*V False . . . . . . . . . . . . . . . . . . . . . . . . . . . . false value29**30** 'False' is the value 'false'.31*/32extern Obj False;333435/****************************************************************************36**37*V Fail . . . . . . . . . . . . . . . . . . . . . . . . . . . . fail value38**39** 'Fail' is the value 'fail'.40*/41extern Obj Fail;4243/****************************************************************************44**45*V SuPeRfail . . . . . . . . . . . . . . . . . . . . . . . superfail value46**47** 'SuPeRfail' is an ``superfail'' object which is used to indicate failure if48** `fail' itself is a sensible response. This is used when having GAP read49** a file line-by-line via a library function (demo.g)50*/51extern Obj SuPeRfail;525354/****************************************************************************55**5657*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *58*/5960/****************************************************************************61**6263*F InitInfoBool() . . . . . . . . . . . . . . . . . table of init functions64*/65StructInitInfo * InitInfoBool ( void );666768#endif // GAP_BOOL_H6970/****************************************************************************71**7273*E bool.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here74*/757677