1function builtin_complex = GB_builtin_complex_get
2%GB_BUILTINT_COMPLEX get the flag that determines the GrB_Type Complex
3%
4% builtin_complex = GB_builtin_complex_get
5%
6% Returns the boolean flag builtin_complex.  If true, GxB_FC64 is used,
7% and set as the "user-defined" Complex type.  Otherwise, the Complex type is
8% created as user-defined.
9%
10% See also GB_builtin_complex_set.
11
12% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
13% SPDX-License-Identifier: Apache-2.0
14
15global GraphBLAS_builtin_complex
16if (isempty (GraphBLAS_builtin_complex))
17    builtin_complex = GB_builtin_complex_set (true) ;
18end
19builtin_complex = GraphBLAS_builtin_complex ;
20
21