Re-enbale detection of min/max parentheses protection, and re-enable mpreal_support unit test.

This commit is contained in:
Gael Guennebaud
2015-02-27 22:38:00 +01:00
parent 6466fa63be
commit b10cd3afd2
3 changed files with 10 additions and 4 deletions

View File

@@ -164,7 +164,7 @@ void computeProductBlockingSizes(Index& k, Index& m, Index& n, Index num_threads
// Perhaps it would make more sense to consider k*n*m??
// Note that for very tiny problem, this function should be bypassed anyway
// because we use the coefficient-based implementation for them.
if(std::max(k,std::max(m,n))<48)
if((std::max)(k,(std::max)(m,n))<48)
return;
typedef typename Traits::ResScalar ResScalar;