1function assert (G)
2%ASSERT generate an error when a condition is violated.
3%
4% See also error.
5
6% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
7% SPDX-License-Identifier: GPL-3.0-or-later
8
9builtin ('assert', logical (G)) ;
10
11