1function SS = spaceClosedSingle(M, N)
2% SS = SPACECLOSEDSINGLE(M, N)
4% Copyright (c) 2012-2014, Imperial College London
9 SS = multichoose(M, N);
13function [v] = multichoose(n,k)
14% [V] = MULTICHOOSE(N,K)
17% Cooperative wall-clock budget checkpoint (session-level deadline set by
the
18% per-solver runAnalyzer); see matlab/util/multichoose.m
for rationale.
26 if lineTimeoutExceeded()
27 line_error(mfilename,'Enumeration exceeded
the wall-clock time budget (options.timeout).');
38 w=multichoose(n-1,k-i);
40 v(end+1,:)=[i w(j,:)];