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
|
// Primal Infeasible
// Reference :Example 5-4, The Simplex method and Sensitivity Analysis, Hamdy A. Taha. "Operations Research-An Introduction", 9E(2014))
// Objective function
c = [-3,-2]';
// Lower Bound of variable
lb = [0,0]
// Upper Bound of variables
ub = [%inf,%inf]
// Constraint Matrix
A = [2,1;
-3,-4;]
b=[2,-12]
intcon = [1 2];
// Calling cbcintlinprog
[x,f,status,output] = cbcintlinprog(c,intcon,A,b,[],[],lb,ub)
// output =
//
// relativegap: 0
// absolutegap: 0
// numnodes: 0
// numfeaspoints: 2
// numiterations: 0
// constrviolation: 4
// message: "Primal Infeasible"
// status =
//
// 1.
// f =
//
// 1.79D+308
// x =
//
// 0.
// 2.
//
|