-
Notifications
You must be signed in to change notification settings - Fork 0
/
KleeMintyAlt.m
50 lines (41 loc) · 956 Bytes
/
KleeMintyAlt.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
49
function [A,b,c,B]=KleeMintyAlt(n,eps)
%function [A,b,c,B]=KleeMintyAlt(n,eps)
%
% Erzeugt Klee-Minty-Würfel in Standardform, Reihenfolge: alternierend
%
% 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:2,1) = [1;-1];
%%
b = zeros(2*n,1);
b(1:2) = [1; -eps];
%%
teilmatrix_A = [eps 1; eps -1];
for i = 1:n-1
A(2*i+1:2*i+2,i:i+1) = teilmatrix_A;
b(2*i+1) = 1;
end
%%
c = zeros(3*n,1);
c(n) = -1;
%% Compute B
B = [1:n find(b' == 1)+n];
return;