Commit bbc2486e authored by Davis King's avatar Davis King

Removed a pair of unused variables.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403984
parent 28633602
...@@ -1410,8 +1410,6 @@ namespace dlib ...@@ -1410,8 +1410,6 @@ namespace dlib
scalar_type Mp = numeric_limits<scalar_type>::infinity(); scalar_type Mp = numeric_limits<scalar_type>::infinity();
scalar_type Mn = numeric_limits<scalar_type>::infinity(); scalar_type Mn = numeric_limits<scalar_type>::infinity();
scalar_type bp = -numeric_limits<scalar_type>::infinity();
scalar_type bn = -numeric_limits<scalar_type>::infinity();
// As a speed hack, pull out pointers to the columns of the // As a speed hack, pull out pointers to the columns of the
// kernel matrix we will be using below rather than accessing // kernel matrix we will be using below rather than accessing
...@@ -1438,7 +1436,6 @@ namespace dlib ...@@ -1438,7 +1436,6 @@ namespace dlib
if (b > 0) if (b > 0)
{ {
bp = b;
scalar_type a = Q_ip[ip] + Q_diag[j] - 2*Q_ip[j]; scalar_type a = Q_ip[ip] + Q_diag[j] - 2*Q_ip[j];
if (a <= 0) if (a <= 0)
a = tau; a = tau;
...@@ -1461,7 +1458,6 @@ namespace dlib ...@@ -1461,7 +1458,6 @@ namespace dlib
if (b > 0) if (b > 0)
{ {
bn = b;
scalar_type a = Q_in[in] + Q_diag[j] - 2*Q_in[j]; scalar_type a = Q_in[in] + Q_diag[j] - 2*Q_in[j];
if (a <= 0) if (a <= 0)
a = tau; a = tau;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment