1function types = gbtest_types
2%GBTEST_TYPES return a cell array of strings, listing all types
3%
4% See also gbtest_binops.
5
6% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
7% SPDX-License-Identifier: GPL-3.0-or-later
8
9types = {
10    'double'
11    'single'
12    'logical'
13    'int8'
14    'int16'
15    'int32'
16    'int64'
17    'uint8'
18    'uint16'
19    'uint32'
20    'uint64'
21    'single complex'
22    'double complex'
23    } ;
24
25