CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

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

Views: 418346
1
/****************************************************************************
2
**
3
*A access.h ANUPQ source Eamonn O'Brien
4
**
5
*Y Copyright 1995-2001, Lehrstuhl D fuer Mathematik, RWTH Aachen, Germany
6
*Y Copyright 1995-2001, School of Mathematical Sciences, ANU, Australia
7
**
8
*/
9
10
#if defined (RUN_TIME)
11
/* variables which determine access functions for words stored in y */
12
unsigned long SC1, SC2, SC3, MASK1, MASK2;
13
SC1 = GSC1; SC2 = GSC2; SC3 = SC1 + SC2;
14
MASK1 = (1L << SC1) - 1; MASK2 = (1L << SC2) - 1;
15
#endif
16
17
18