1function test57 (op)
2%TEST57 test operator on large uint32 values
3%
4% Usage:
5%   test57(op)
6%   test57      % Default op is 'max' if no arguments given
7
8% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
9% SPDX-License-Identifier: Apache-2.0
10
11if (nargin < 1)
12    op = 'max'
13end
14
15GB_mex_op (op, uint32(4294967211), uint32(4294967203))
16
17fprintf ('\ntest57: all tests passed\n') ;
18
19