1function [p, varargout] = dmperm (G)
2%DMPERM Dulmage-Mendelsohn permutation.
3% See 'help dmperm' for details.
4%
5% See also GrB/amd, GrB/colamd.
6
7% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
8% SPDX-License-Identifier: GPL-3.0-or-later
9
10[p, varargout{1:nargout-1}] = builtin ('dmperm', logical (G)) ;
11
12