Optimization: principles and algorithms, by Michel Bierlaire
run1604.m
Go to the documentation of this file.
1 %> \file
2 %> Runs example 16.4 illustrating the vertex enumeration algorithm
3 %>
4 %> @note Calls \ref vertexEnumeration
5 %>
6 %> @ingroup Running
7 %> @ingroup chap16
8 %> @author Michel Bierlaire
9 %> @date Sun Mar 22 11:09:14 2015
10 A = [1 1 1 0 ; 1 -1 0 1] ;
11 b = [1 ; 1] ;
12 c = [-1 ; -2 ; 0 ; 0 ] ;
13 [solution,optvalue] = vertexEnumeration(A,b,c)
14 
function vertexEnumeration(in A, in b, in c)
Applies the vertex enumeration algorithm to solve subject to and , where , , and ...
Copyright 2015-2018 Michel Bierlaire