-
Notifications
You must be signed in to change notification settings - Fork 0
/
KleeMintyBlock.m
48 lines (42 loc) · 996 Bytes
/
KleeMintyBlock.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
function [A,b,c,B]=KleeMintyBlock(n,eps)
%function [A,b,c,B]=KleeMintyBlock(n,eps)
%
% Erzeugt Klee-Minty-Würfel in Standardform, Reihenfolge: Blöcke
%
% Input: n - Dimension
% eps - Parameter, der die "Verschiebung des Würfels"
% beschreibt
%
% Output: A, b, c - Daten für KMW in primaler Standardform
% min c'x s.t. Ax=b, x>=0
% mit b>=0
% B - zulässige Basis, die die Ecke (eps,...,eps^n) codiert
%
% Autoren: Vladyslav Yushchenko, Jonas Molina Ramirez, Florian Beck
%% Test Data
% clear;
% n = 5;
% eps = 0.2;
%% check if n >= 1
if(n< 1)
error('n must be greater zero.');
end
%%
A = [zeros(2*n,n) eye(2*n)];
%%
A([1;n+1],1) = [1;-1];
%%
b = zeros(2*n,1);
b([1:n,n+1]) = [ones(n,1); -eps];
%%
teilmatrix_A_1 = [eps 1];
teilmatrix_A_2 = [eps -1];
for i = 1:n-1
A([i+1; n+i+1],i:i+1) = [teilmatrix_A_1;teilmatrix_A_2];
end
%%
c = zeros(3*n,1);
c(n) = -1;
%% Compute B
B = [1:n find(b' == 1)+n];
return;