1function test33
2%TEST33 test a semiring
3
4% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
5% SPDX-License-Identifier: Apache-2.0
6
7semiring = struct ( ...
8    'multiply', 'times', ...
9    'add', 'plus', ...
10    'class', 'double' )
11
12GB_mex_semiring (semiring)
13
14fprintf ('\ntest33: all tests passed\n') ;
15
16