summaryrefslogtreecommitdiff
path: root/tests/general_tests/intfminunc/intfminuc_logical3.sce
blob: 7ec58be8064b8e21c72fc41c0ba010df195e58ed (plain)
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
// An Test for infeasible problem
function y = fun(x)
	y = (x(1)-x(2))^2 + x(1);
endfunction
x0 = [1,2];
options=list("maxiter", [1000], "cputime", [1.5])
intcon = [1]


// InFeasible Solution.
//  hessian  =
 
//      []
//  gradient  =
 
//      []
//  exitflag  =
 
//   1  
//  fopt  =
 
//     0.  
//  xopt  =
 
//      []
 

[xopt,fopt,exitflag,gradient,hessian] = intfminunc (fun, x0,intcon, options)