fixed min/max problem

This commit is contained in:
Andreas Fabri 2006-08-17 08:56:49 +00:00
parent cf2e84bfd9
commit e3d2f8a410
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ void QP__filtered_base<Rep_,NT_,ET2NT_>::
set( ) set( )
{ {
// reserve memory for NT versions of current solution // reserve memory for NT versions of current solution
//int l = std::min( this->solver().number_of_variables(), //int l = (std::min)( this->solver().number_of_variables(),
// this->solver().number_of_constraints()); // this->solver().number_of_constraints());
int l = this->solver().get_l(); int l = this->solver().get_l();
lambda_NT.resize( l, nt0); lambda_NT.resize( l, nt0);
set( l, Is_linear()); set( l, Is_linear());