1 | /* |
2 | * This Source Code Form is subject to the terms of the Mozilla Public |
3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
5 | * |
6 | * Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. |
7 | */ |
8 | |
9 | #ifndef _GROUP_H_ |
10 | #define _GROUP_H_ |
11 | #include "gdk.h" |
12 | |
13 | mal_export str GRPgroup1(bat *ngid, bat *next, bat *nhis, const bat *bid); |
14 | mal_export str GRPgroup2(bat *ngid, bat *next, bat *nhis, |
15 | const bat *bid, const bat *sid); |
16 | mal_export str GRPgroup3(bat *ngid, bat *next, const bat *bid); |
17 | mal_export str GRPgroup4(bat *ngid, bat *next, |
18 | const bat *bid, const bat *sid); |
19 | mal_export str GRPsubgroup2(bat *ngid, bat *next, bat *nhis, |
20 | const bat *bid, const bat *gid); |
21 | mal_export str GRPsubgroup3(bat *ngid, bat *next, bat *nhis, |
22 | const bat *bid, const bat *sid, |
23 | const bat *gid); |
24 | mal_export str GRPsubgroup4(bat *ngid, bat *next, bat *nhis, |
25 | const bat *bid, const bat *gid, |
26 | const bat *eid, const bat *hid); |
27 | mal_export str GRPsubgroup5(bat *ngid, bat *next, bat *nhis, |
28 | const bat *bid, const bat *sid, |
29 | const bat *gid, const bat *eid, const bat *hid); |
30 | mal_export str GRPsubgroup6(bat *ngid, bat *next, |
31 | const bat *bid, const bat *gid); |
32 | mal_export str GRPsubgroup7(bat *ngid, bat *next, |
33 | const bat *bid, const bat *sid, |
34 | const bat *gid); |
35 | mal_export str GRPsubgroup8(bat *ngid, bat *next, |
36 | const bat *bid, const bat *gid, |
37 | const bat *eid, const bat *hid); |
38 | mal_export str GRPsubgroup9(bat *ngid, bat *next, |
39 | const bat *bid, const bat *sid, |
40 | const bat *gid, const bat *eid, const bat *hid); |
41 | mal_export str GRPgroup11(bat *ngid, const bat *bid); |
42 | mal_export str GRPgroup21(bat *ngid, const bat *bid, const bat *sid); |
43 | mal_export str GRPsubgroup51(bat *ngid, const bat *bid, const bat *sid, |
44 | const bat *gid, const bat *eid, const bat *hid); |
45 | mal_export str GRPsubgroup41(bat *ngid, const bat *bid, const bat *gid, |
46 | const bat *eid, const bat *hid); |
47 | mal_export str GRPsubgroup31(bat *ngid, const bat *bid, const bat *sid, |
48 | const bat *gid); |
49 | mal_export str GRPsubgroup21(bat *ngid, const bat *bid, const bat *gid); |
50 | |
51 | #endif /* _GROUP_H_ */ |
52 | |