Skip to content

Commit

Permalink
Compare unsigned and unsigned literal
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Jan 3, 2018
1 parent 34490ad commit dd97dba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/structure/DualLibQPBMSOSVM_unittest.cc
Expand Up @@ -111,8 +111,8 @@ TEST_P(DualLibQPBMSOSVMTestLoopSolvers,train_small_problem_and_predict)
//SG_SPRINT("result = { Fp=%lf, Fd=%lf, nIter=%d, nCP=%d, nzA=%d, exitflag=%d }\n",
// res.Fp, res.Fd, res.nIter, res.nCP, res.nzA, res.exitflag);

ASSERT_LE(res.nCP, 8);
ASSERT_LE(res.nzA, 8);
ASSERT_LE(res.nCP, 8u);
ASSERT_LE(res.nzA, 8u);
ASSERT_LE(res.exitflag, 0);

CStructuredLabels* out = CLabelsFactory::to_structured(sosvm->apply());
Expand Down

0 comments on commit dd97dba

Please sign in to comment.