-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlrssimplex.cpp
118 lines (96 loc) · 3.09 KB
/
lrssimplex.cpp
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/**
* LRS-based test driver for the KSimplex project.
* I/O format is compatible with the usual driver, but this version uses LRS as a backend.
*/
// Copyright 2013 Aaron Moss
//
// This file is part of KSimplex.
//
// KSimplex is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// KSimplex is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with KSimplex. If not, see <https://www.gnu.org/licenses/>.
#include <iostream>
#include <string>
#include <gmpxx.h>
#include "lrs_io.hpp"
#include "lrs_tableau.hpp"
#include "simplex.hpp"
#include "timing.hpp"
#include "lrs/lrs.hpp"
#include "lrs/clrs.hpp"
#include "lrs/cobasis.hpp"
#include "lrs/matrix.hpp"
using namespace ksimplex;
int main(int argc, char** argv) {
// Read in size and dimension of the the problem
u32 n, d;
std::cin >> n;
std::cin >> d;
// Read determinant
lrs::val_t det;
lrs_alloc_mp(det);
parseHex(std::cin, det);
// Read basis values
lrs::ind* bas = new lrs::ind[n+1];
for (u32 i = 0; i <= n; ++i) std::cin >> bas[i];
// Read in matrix, grab objective row first
lrs::vector_mpz& mat = *parseLrsHex(std::cin, n, d);
// Create LRS instance initialized to the given determinant and basis, and set objective
lrs::lrs& l = *new lrs::lrs(mat, n, d, lrs::index_set(mat.size()+1), det, bas);
// Construct tableau
lrs_tableau tab(l, n, d);
// Print initial tableau
printMatrix(tab.mat(), n, d, std::cout);
// Run simplex algorithm
u32 pivot_count = 0;
timer start = now();
ksimplex::pivot p = simplexSolve(tab, &pivot_count, std::cout);
/* // Get first pivot
ksimplex::pivot p = tab.ratioTest();
// Pivot as long as more pivots exist
while ( p != tableau_optimal && p != tableau_unbounded ) {
std::cout << "(" << p.leave << "," << p.enter << ")" << std::endl;
tab.doPivot(p.enter, p.leave);
++pivot_count;
printMatrix(tab.mat(), n, d, std::cout);
p = tab.ratioTest();
}
*/
timer end = now();
std::string max;
if ( p == tableau_optimal ) {
std::cout << "tableau: OPTIMAL" << std::endl;
// set maximum
mpq_class opt;
opt.get_num() = mpz_class(tab.obj());
opt.get_den() = mpz_class(tab.det());
opt.canonicalize();
max = opt.get_str();
} else if ( p == tableau_unbounded ) {
std::cout << "tableau: UNBOUNDED" << std::endl;
max = "UNBOUNDED";
}
// Print final tableau
printMatrix(tab.mat(), n, d, std::cout);
// Print summary information
std::cout << "\nn: " << n
<< "\nd: " << d
<< "\npivots: " << pivot_count
<< "\noptimal: " << max
<< "\ntime(ms): " << ms_between(start, end) << std::endl;
//Cleanup
delete &l;
delete &mat;
delete[] bas;
lrs_clear_mp(det);
return 0;
}