7 lines
113 B
Mathematica
7 lines
113 B
Mathematica
|
|
function c = getcutflag(X)
|
||
|
|
|
||
|
|
X = flatten(X);
|
||
|
|
c = [];
|
||
|
|
for i = 1:length(X.clauses)
|
||
|
|
c = [c;X.clauses{i}.cut];
|
||
|
|
end
|