LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
parse_approx_type.m
1function max_degree = parse_approx_type(approx_type)
2raw_value = uint32(approx_type);
3max_degree = double(bitand(raw_value, uint32(2^24 - 1)));
4max_degree = min(max_degree, libqbd.get_max_factor());
5end